【python】指令碼批量安裝第三方包
阿新 • • 發佈:2018-11-21
編寫指令碼py程式
新建批量安裝的檔案 libsinstall.py
import os
# 新增需要安裝的擴充套件包名稱進去
libs = {"pillow" , "sklearn" , "numpy" , "pandas"}
try:
for lib in libs:
os.system(" pip install " + lib)
print("{} Install successful".format(lib))
except:
print("{} failed install".format(lib))
cmd命令列輸入python batchinstall.py執行程式即可,忽略我的python3 是為了區分不同版本改名的。
安裝的時候預設獲取包的路徑可能是國外的網站,速度很慢,可以設定更改為國內的映象網站。
在C:\Users\你的使用者名稱\AppData\Roaming路徑下新建 pip 資料夾,在資料夾內新建 pip.ini 配置檔案。輸入:
[global]
timeout = 6000
index-url = http://mirrors.aliyun.com/pypi/simple/
trusted-host = mirrors.aliyun.com
也可以使用其他國內映象網站,之前文章有介紹。