1. 程式人生 > >OSX升級pip

OSX升級pip

操作過程中經常會遇上下面的提示,對於強迫症來說實在是不能忍,必須解決!

You are using pip version 9.0.1, however version 18.1 is available.

You should consider upgrading via the 'pip install --upgrade pip' command.

 

解決方法一:直接參考提示中執行 pip install --upgrade pip

很遺憾,我在執行之後就甩出了Exception,提示OSError: [Errno 13] Permission denied: '/Library/Python/2.7/site-packages/pip-9.0.1-py2.7.egg/EGG-INFO/PKG-INFO'

看來是沒有許可權的緣故,讓我們跑一發 ls -ld /Library/Python/2.7,輸出了 drwxr-xr-x  3 root  wheel  96 Jul 28  2017 /Library/Python/2.7

有了root鎮守,只有檔案所有者才能進行操作,而使用者組和其他非本使用者組只有讀寫、執行的許可權;若要繼續在這個package中進行安裝操作:

   1:自己以一個root角色執行安裝命令(其實類似於下面的解決方法二)

   2:把許可權改成當前使用者(current user)可寫模式

 

解決方法二:sudo python -m pip install --upgrade pip

                                 或者  

                      python3 -m pip install -U --force-reinstall pip

---------------------------

Collecting pip

  Downloading http://mirrors.aliyun.com/pypi/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl (1.3MB)

    100% |████████████████████████████████| 1.3MB 22.2MB/s 

Installing collected packages: pip

  Found existing installation: pip 9.0.1

    Uninstalling pip-9.0.1:

      Successfully uninstalled pip-9.0.1

Successfully installed pip-18.1

---------------------------

plus,python3 -m pip install -U --force-reinstall pip

 

更新完畢之後,輸入 pip -V 檢視pip version(直接輸入pip,可以檢視所有命令)

>>>pip 18.1 from /Library/Python/2.7/site-packages/pip (python 2.7)

更新成功!