1,首相在python程序的文件夹内,新建一个文本文档。名字自定义,在文档中输入需要安装的第三方库,并用英文半角逗号隔开。
2、接下来用编写程序打开文档,之后调用os库,来安装文本里的第三方库。
import os
def getTxt():
txt = open("kus.txt","r").read()
for dd in ",":
txt=txt.replace(dd," ")
return txt
kusTxt=getTxt()
words= kusTxt.split()
for word in words:
os.system("pip install "+word)
print("成功安装")
3、程序保存后,用cmd命令行运行程序即可。顺带附上用cmd运行python程序的链接
https://blog.csdn.net/qq_40701568/article/details/79973060