jupyter notebook使用的python环境不对
程序员文章站
2022-05-27 22:08:30
...
对jupyter notebook进行一些操作后,在打开运行jupyter notebook时,发现我已经安装的一些python包无法导入了,如:
import numpy as np
报错:
ImportError: No module named 'numpy'
而我的numpy包是安装过的,比较奇怪。
使用如下代码检测python环境:
import sys
print(sys.executable)
打印:
/usr/bin/python3
发现使用的是系统自带的python,而我想使用的是自己创建的anaconda环境下的python,接下来就是要解决如何改变jupyter notebook使用的python环境。
查看jupyter的kernels:
jupyter kernelspec list
输出:
python2 /home/cc/.local/share/jupyter/kernels/python2
python3 /home/cc/.local/share/jupyter/kernels/python3
我的jupyter notebook同时配置了python2和python3(配置参考:Jupyter notebook中Python2和Python3共存),所以结果如上所示,打开上面文件夹下的kernel.json文件:
{
"display_name": "Python 3",
"argv": [
"/usr/bin/python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"language": "python"
}
上面文件的第四行就是现在调用的python路径,现在调用的是系统自带的python,修改为自己需要的python环境的路径即可。
上一篇: 10分钟小幅优化亿级数据查询
下一篇: 服务器上设置Jupyter密码(备忘)
推荐阅读
-
在Python3环境中使用ROS的cv_bridge
-
ubuntu16.04使用Anaconda创建对应python版本的虚拟环境
-
使用虚拟环境打包python为exe 文件的方法
-
ubuntu16.04使用Anaconda创建对应python版本的虚拟环境
-
在Python3环境中使用ROS的cv_bridge
-
Windows系统下使用flup搭建Nginx和Python环境的方法
-
windows系统中Python多版本与jupyter notebook使用虚拟环境的过程
-
windows系统下jupyter notebook使用虚拟环境
-
Python环境下安装使用异步任务队列包Celery的基础教程
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow