安装python第三方库的小技巧 二叉树上的我 收录于 python 2020-03-15 约 129 字 预计阅读 1 分钟 目录 直接放代码 直接放代码 1 2 3 4 5 6 7 8 9 10 11 12 import os libs = { "requests","jieba","beautifulsoup4",\ "django","flask",\ "此处填写你需要下载的库的名称,注意大小写并拼写正确,样式如上面例子","pandas" } try: for lib in libs: os.system('pip install '+lib) print("Successful") except: print('error') os.system(command) command 为要执行的命令,近似于Windows下cmd窗口中输入的命令。 Please enable JavaScript to view the comments powered by Telegram Comments.