windows10环境 python3.7 使用pycharm的虚拟环境
1、新建pycharm的python虚拟环境
点击pycharm->file->settings->Project Interpreter->点击设置->add
弹出如下界面
新建 Virtualenv Environment 虚拟环境,点击OK完成,这样python虚拟环境就建好啦。
2、安装jupyter notebook
使用本地pip安装jupyter ,执行如下命令:
pip3 install jupyter
打开win10 cmd窗口,快捷方式windows+R ,输入cmd,按下回车键,输入 jupyter notebook,过一会儿弹出jupyter网页,说明已经安装成功。
3、配置jupyter,使用python虚拟环境
输入命令 jupyter kernelspec list 找到jupyter内核配置地址如下
c:\users\*\*\*\programs\python\python37\share\jupyter\kernels\python3
win10使用cd c:\users\*\*\*\programs\python\python37\share\jupyter\kernels\python3
打开kernel.json文件进行如下配置:
{
"argv": [
"D:\\*\\*\\*\\venv\\Scripts\\python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3 (ipykernel)",
"language": "python",
"metadata": {
"debugger": true
}
}
将第3行改为自己python虚拟环境所在的路径,即:D:\\*\\*\\*\\venv\\Scripts\\python
关闭jupyter的网站,重新打开,此时所用内核已经为python虚拟环境啦
验证代码
# jupyter notebook执行如下代码
import os, sys
print(sys.executable) # works this time
print(sys.version)
print(sys.version_info)
参考文章
jupyter notebook使用python虚拟环境_mb5fdb133c76a49的技术博客_51CTO博客