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

 

 

發佈了453 篇原創文章 · 獲贊 192 · 訪問量 183萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章