当前位置:   article > 正文

【2023最新版】PyCharm配置 Jupyter Notebook详解(启动、设置密码、测试等)_pycharm配置jupyter

pycharm配置jupyter

目录

一、准备工作

1. 安装Anaconda、pycharm

2. Jupyter官网 

3. Jupyter常用命令

二、PyCharm配置 Jupyter Notebook

1. 启动Jupyter Notebook 服务器

2. 复制URL 地址

3. 配置Jupyter服务器

访问令牌 token注意事项

4. Jupyter服务器设置密码(避免每次输入token)

输入密码登录

三、测试 Jupyter Notebook

1. 新建Jupyter Notebook文件

2. 运行单元

未启动Jupyter 

启动Jupyter 


一、准备工作

1. 安装Anaconda、pycharm

win11 安装 Anaconda(2022.10)+pycharm(2022.3/2023.1.4)+配置虚拟环境_QomolangmaH的博客-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/m0_63834988/article/details/128693741?spm=1001.2014.3001.5501         Jupyter 是 Anaconda 发行版的一部分,并默认随 Anaconda 一起安装。  

        (也可以使用独立安装和使用,无需依赖 Anaconda

pip install jupyter notebook

        本文介绍了PyCharm配置Anaconda发行版中的Jupyter,新文章将介绍了PyCharm使用conda虚拟环境中的Jupyter:

【2023最新版】PyCharm使用 Jupyter Notebook详解(在conda环境里安装Jupyter~PyCharm使用conda环境~Jupyter自启动)-CSDN博客icon-default.png?t=N7T8https://blog.csdn.net/m0_63834988/article/details/134209970?spm=1001.2014.3001.5501

2. Jupyter官网 

Project Jupyter | Homeicon-default.png?t=N7T8https://jupyter.org/

3. Jupyter常用命令

Jupyter
  1. usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand]
  2. Jupyter: Interactive Computing
  3. positional arguments:
  4. subcommand the subcommand to launch
  5. optional arguments:
  6. -h, --help show this help message and exit
  7. --version show the versions of core jupyter packages and exit
  8. --config-dir show Jupyter config dir
  9. --data-dir show Jupyter data dir
  10. --runtime-dir show Jupyter runtime dir
  11. --paths show all Jupyter paths. Add --json for machine-readable format.
  12. --json output paths as machine-readable json
  13. --debug output debug information about paths
  14. Available subcommands: bundlerextension console dejavu events execute kernel kernelspec lab labextension labhub
  15. migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust
  16. Please specify a subcommand or one of the optional arguments.

二、PyCharm配置 Jupyter Notebook

1. 启动Jupyter Notebook 服务器

终端输入:

jupyter notebook

2. 复制URL 地址

        如图,终端中显示 Jupyter Notebook 服务器的 URL 地址(通常是 http://localhost:8888/),复制如下任一链接(包括token部分)

0f2f08f140574821a820cdbd3f70c3f3.png

3. 配置Jupyter服务器

  • 打开项目:

1ffd98b33dcb4c6cbaeae83a03b340f3.png

570445916b494c2f82b5dd56ce1aee52.png

  • 或直接找:

505bba0a14684f0b9c759a9692e21465.png

  • 填入上述的链接(包括访问令牌 token)

8ce3d5fe79b04ed0985ce6b44b374ae2.png

访问令牌 token注意事项

每次Jupyter提供的token不一样,若重新启动Jupyter需重新填充token

1bfc6b51a74c4b72a553e998fd44e42d.png

4. Jupyter服务器设置密码(避免每次输入token)

终端输入:

jupyter notebook password

注意:输入密码不显示

75d21ba7810a44b593d52998d33d0f1f.png

        建议设置简单密码(如123456)

输入密码登录

e9e8627b03f8405c90f9495927532b53.png

三、测试 Jupyter Notebook

1. 新建Jupyter Notebook文件

3280b98232c7480b9bdec1f5bbb92a9c.png

2. 运行单元

  1. import pandas as pd
  2. # 创建一个简单的数据集
  3. data = {'Name': ['John', 'Emma', 'Sam', 'Lisa'],
  4. 'Age': [28, 24, 32, 30],
  5. 'City': ['New York', 'London', 'Sydney', 'Paris']}
  6. # 将数据集转换成 DataFrame
  7. df = pd.DataFrame(data)
  8. # 查看 DataFrame 的前几行数据
  9. print(df.head())

鼠标右键

47c1d21cd8434b65a3bd3eeaf89db694.png

未启动Jupyter 

afd8575181714473b6f6b4574f894dea.png

启动Jupyter 

1decdbc194d844fea9d1a4f7aee697ce.png

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号