1. 程式人生 > >DAY 41 python包報錯解決方案 and python包安裝慢問題

DAY 41 python包報錯解決方案 and python包安裝慢問題

Collecting numpy

Using cached numpy-1.10.2-cp27-none-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whlInstalling
 collected packages: numpy
 Found existing installation: numpy 1.8.0rc1
 DEPRECATION: Uninstalling a distutils installed project (numpy) has been deprecated and will be removed in a future version. This is due to the fact that uninstalling a distutils project will only partially uninstall the project.
 Uninstalling numpy-1.8.0rc1:Exception:Traceback
 (most recent call last):
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/basecommand.py", line 211, in main
 status = self.run(options, args)
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/commands/install.py", line 311, in run
 root=options.root_path,
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_set.py", line 640, in install
 requirement.uninstall(auto_confirm=True)
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_install.py", line 716, in uninstall
 paths_to_remove.remove(auto_confirm)
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/req/req_uninstall.py", line 125, in remove
 renames(path, new_path)
 File "/Library/Python/2.7/site-packages/pip-7.1.2-py2.7.egg/pip/utils/__init__.py",
 line 315, in renames
shutil.move(old, new)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 302, in move
 copy2(src, real_dst)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 131, in copy2
 copystat(src, dst)
 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/shutil.py", line 103, in copystat
 os.chflags(dst, st.st_flags)OSError:
 [Errno 1] Operation not permitted: '/var/folders/5n/vbm997m56xg3kw67y6bccn2m0000gn/T/pip-4tcBsd-uninstall/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/numpy-1.8.0rc1-py2.7.egg-info'


  1. 點選Mac電腦的蘋果圖示
  2. 選擇 重新啟動
  3. 按住 command+R,直到進入還原模式
  4. 選擇實用工具,然後點選 終端
  5. 輸入 csrutil disable 按下回車
  6. 重啟電腦

這樣就將“SIP“關閉了。

然後我們使用 pip 安裝升級numpy、scipy等相關的包。

問題是解決了,但是如果到這裡就認為已經萬事大吉了,其實是大錯特錯了。蘋果官方之所以設定“SIP“主要是考慮到系統的安全性問題。所以,我們最好還是將“SIP“開啟。開啟的方式如下: 
1. 點選Mac電腦的蘋果圖示 
2. 選擇 重新啟動 
3. 按住 command+R,直到進入還原模式 
4. 選擇實用工具,然後點選 終端 
5. 輸入 csrutil enable

 按下回車 
6. 重啟電腦

但很快就會發現這些源安裝超級慢,所以我推薦大家使用豆瓣的源

pip install matplotlib -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install numpy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com
pip install
seaborn scipy -i http://pypi.douban.com/simple --trusted-host pypi.douban.com