筆記-ubuntu14.04安裝SciPy
SciPy是一個python的科學計算庫。
1) 官網上的方法 參見https://www.scipy.org/install.html
sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose
都成功了,但就是python-sympy失敗了。
用import scipy測試,得到錯誤信息ImportError: No module named scipy
2) 有一個解決方案,參見https://stackoverflow.com/questions/24808043/importerror-no-module-named-scipy
就是用pip把scipy再安裝一遍。
pip install scipy
但卻得到了下列錯誤:
PermissionError: [Errno 13] Permission denied: /usr/local/lib/python3.4/dist-packages/numpy-1.14.2.dist-info
3) 用另一個方法把這些庫再裝一遍,參考https://www.scipy.org/install.html, I use another mothed to install
python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
上述代碼為python2安裝好了。
python3 -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose
上述代碼為python3安裝,卻失敗了,信息是:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-9e0c2jgy/pandas/
用import scipy來測試,python2可以,python3不認識
4) sudo apt-get install python-dev python3-dev
上述代碼對python2無效果,但把python3升級了,然後,用import scipy來測試,python2可以,python3也可以了。
推薦閱讀:
※《Go程序設計語言》筆記四
※《一生的讀書計劃》
※毛中特·第一章-馬克思主義中國化
※NUKE 基礎知識 Fundamentals 01 - 節點簡介 Introduction To Nodes
TAG:筆記 |