Python庫安裝模式
阿新 • • 發佈:2019-01-11
1. 使用easy_install,例如:
easy_install pip
2. 使用pip ,例如:
pip install spyder
#如果使用國內映象
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple spyder
當然,更簡單的做法是建立一個 pip.ini 檔案,讓 pip 每次安裝的時候,使用這個檔案內的配置。windows 下這個檔案一般是不存在的,需要自己建立。
檔案存放的位置如下:
On Unix the default configuration file is: $HOME/.config/pip/pip.conf which respects the XDG_CONFIG_HOME environment variable. On macOS the configuration file is $HOME/Library/Application Support/pip/pip.conf. On Windows the configuration file is %APPDATA%\pip\pip.ini.
pip.ini 裡面的內容如下:
[global]
index-url = http://pypi.douban.com/simple
[install]
trusted-host=pypi.douban.com
3.conda安裝,和pip相似,安裝anaconda後可以使用,TUNA 還提供了 Anaconda 倉庫的映象,執行以下命令
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --set show_channel_urls yes
4. 安裝下載的XXXX.whl檔案(需要先安裝wheel,執行pip install wheel),在該檔案目錄下cmd執行pip install XXXX.whl
(常見檔案庫:http://www.lfd.uci.edu/~gohlke/pythonlibs/)
5. 安裝下載的XXXX.zip,解壓後,如果檔案目錄下有install.py或setup.py檔案,在該檔案目錄下cmd執行python install.py install或python setup.py install(一般會生成一個.egg壓縮檔案,用於python程式呼叫);
6. 安裝下載的XXXX.exe檔案,直接雙擊開啟
備註:
python使用命令列執行,所以需要將相應的執行檔案所在的目錄加入計算機的環境變數中的path下,常用目錄:\Python35;\Python35\Scripts;\Python35\Lib;