pycharm 安装 jupyter

jupyter可以像笔记一样,在学习和整理思路时很好。

使用的python是3.7.5版本

windows安装步骤:

cmd

再修改下pip的源,选择国内,这样快。

国内pip源:

阿里云 https://mirrors.aliyun.com/pypi/simple/ 广东

豆瓣https://pypi.douban.com/simple/ 北京

清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/ 北京

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ jupyter

查看pip安装列表

pip list

启动

 jupyter notebook

3.8版本(20191210安装的时候)会报错,解决方法见:

https://blog.csdn.net/zengmingen/article/details/103473267

运行成功

配置pycharm

进入setting--搜索jupyter,在jupyter server配置内容里,选择configured servery,赋值jupyternotebook的 http路径

如果要卸载

命令如下

pip uninstall -y jupyter
pip uninstall -y jupyter_core
pip uninstall -y jupyter-client
pip uninstall -y jupyter-console
pip uninstall -y notebook
pip uninstall -y qtconsole
pip uninstall -y nbconvert
pip uninstall -y nbformat
发布了461 篇原创文章 · 获赞 193 · 访问量 184万+

猜你喜欢

转载自blog.csdn.net/zengmingen/article/details/103456115