Python安装相关的机器学习库以及图像处理库

安装

sudo apt-get install python-scipy

sudo apt-get install python-numpy

sudo apt-get install python-matplotlib

pip install -U scikit-learn

测试

python

import scipy

import numpy

import pylab

scipy.test()

numpy.test()

pylab.test()

原文地址:https://www.cnblogs.com/adong7639/p/7704528.html