python庫批量安裝的方法

Happy丶lazy發表於2020-10-29

在融入一個集體時,可能會使用團隊所用的庫,可能會遇到批量安裝庫的情況,我入職後大哥給我txt文字,如下圖所示,一個一個匯入太麻煩,所以使用自己寫了一個指令碼,

import  pandas as pd
import os  # 匯入os庫
test=pd.read_csv('E:\work_test/requirements.txt')
for i in test['ku']:
    os.system("pip install %s -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com" %i)

相關文章