直接通过jupyternotebook安装库
约 329 字
预计阅读 1 分钟
我的前提条件,实际能使用jupyternotebook都可
Ubuntu 20.0系统
miniconda3和jupyter
直接通过jupyter notebook安装库
代码:
查找解释器位置
1
2
| import os
os.sys.executable
|
示例结果:
安装示例模板
1
2
3
4
5
6
7
8
9
10
11
| import os
libs = {
"requests","jieba","beautifulsoup4","matplotlib","numpy","pandas","openpyxl","tensorflow","仿照格式这里填写要安装的包"
}
try:
for lib in libs:
#这里的地址是上一步显示的解释器位置
os.system('/usr/bin/python3 -m pip install '+lib)
print("Successful")
except:
print('error')
|