numpy

http://www.scipy.org/scipylib/download.html


numpy, scipy, LAPACK, BLAS

ubuntu
sudo apt-get install liblapack3
http://packages.ubuntu.com/trusty/liblapack3


to uninstall files added by python setup.py install
To record list of installed files, you can use:

python setup.py install --record files.txt
Once you want to uninstall you can use xargs to do the removal:

cat files.txt | xargs rm -rf

猜你喜欢

转载自huaxiamian.iteye.com/blog/2258817
今日推荐