怎么在pycharm配置jupyter
时间: 2023-04-21 09:07:04 浏览: 412
Pycharm安装并配置jupyter notebook的实现
5星 · 资源好评率100%
1. 打开PyCharm,点击File -> Settings -> Project Interpreter
2. 在Project Interpreter页面,点击右上角的“+”按钮,选择“Add Conda Environment”
3. 在弹出的窗口中,选择“Existing environment”,并在下拉菜单中选择你已经安装好的Python环境
4. 点击“OK”按钮,等待PyCharm安装必要的包和依赖
5. 安装完成后,点击File -> New Project,选择“Jupyter Notebook”
6. 在弹出的窗口中,选择“Existing Interpreter”,并选择刚刚添加的Python环境
7. 点击“Create”,等待PyCharm创建Jupyter Notebook项目
8. 创建完成后,你就可以在PyCharm中使用Jupyter Notebook了。
阅读全文