- Learning Data Mining with Python(Second Edition)
- Robert Layton
- 226字
- 2021-07-02 23:40:02
Installing scikit-learn
The scikit-learn package is a machine learning library, written in Python (but also containing code in other languages). It contains numerous algorithms, datasets, utilities, and frameworks for performing machine learning. Scikit-learnis built upon the scientific python stack, including libraries such as the NumPy and SciPy for speed. Scikit-learn is fast and scalable in many instances and useful for all skill ranges from beginners to advanced research users. We will cover more details of scikit-learn in Chapter 2, Classifying with scikit-learn Estimators.
To install scikit-learn, you can use the conda utility that comes with Python 3, which will also install the NumPy and SciPy libraries if you do not already have them. Open a terminal with administrator/root privileges and enter the following command:
$ conda install scikit-learn
Users of major Linux distributions such as Ubuntu or Red Hat may wish to install the official package from their package manager.
Not all distributions have the latest versions of scikit-learn, so check the version before installing it. The minimum version needed for this book is 0.14. My recommendation for this book is to use Anaconda to manage this for you, rather than installing using your system's package manager.
Those wishing to install the latest version by compiling the source, or view more detailed installation instructions, can go to http://scikit-learn.org/stable/install.html and refer the official documentation on installing scikit-learn.
- Mastering Concurrency Programming with Java 8
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- Software Defined Networking with OpenFlow
- 假如C語言是我發明的:講給孩子聽的大師編程課
- 網絡爬蟲原理與實踐:基于C#語言
- 單片機應用與調試項目教程(C語言版)
- ANSYS Fluent 二次開發指南
- 從零開始學Linux編程
- Mastering Git
- D3.js By Example
- Procedural Content Generation for C++ Game Development
- Python語言科研繪圖與學術圖表繪制從入門到精通
- jQuery技術內幕:深入解析jQuery架構設計與實現原理
- Java EE 7 with GlassFish 4 Application Server
- jQuery從入門到精通(微課精編版)