- Mastering Machine Learning with scikit-learn(Second Edition)
- Gavin Hackeling
- 134字
- 2021-07-02 19:01:10
Installing scikit-learn
This book was written for version 0.18.1 of scikit-learn; use this version to ensure that the examples run correctly. If you have previously installed scikit-learn, you can retrieve the version number by executing the following in a notebook or Python interpreter:
# In[1]:
import sklearn
sklearn.__version__
# Out[1]:
'0.18.1'
The package is named sklearn because scikit-learn is not a valid Python package name.
If you have not previously installed scikit-learn, you may install it from a package manager or build it from source. We will review the installation processes for Ubuntu 16.04, Max OS, and Windows 10 in the following sections, but refer to http://scikit-learn.org/stable/install.html for the latest instructions. The following instructions assume only that you have installed Python >= 2.6 or Python >= 3.3. See http://www.python.org/download/ for instructions on installing Python.
推薦閱讀
- Mastering Visual Studio 2017
- Instant Testing with CasperJS
- Hands-On Image Processing with Python
- Twilio Best Practices
- Java從入門到精通(第4版)
- Python計算機視覺編程
- Access 2010數據庫基礎與應用項目式教程(第3版)
- C語言程序設計案例式教程
- Java系統化項目開發教程
- 微服務架構深度解析:原理、實踐與進階
- Creating Stunning Dashboards with QlikView
- Programming with CodeIgniterMVC
- Learning Docker Networking
- Python全棧開發:基礎入門
- Learning D3.js 5 Mapping(Second Edition)