win11 安装 Anaconda(2022.10)+pycharm(2022.3/2023.1.4)+配置虚拟环境_QomolangmaH的博客-CSDN博客
https://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博客
https://blog.csdn.net/m0_63834988/article/details/134209970?spm=1001.2014.3001.5501
Jupyter
usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [--debug] [subcommand]
Jupyter: Interactive Computing
positional arguments:
subcommand the subcommand to launch
optional arguments:
-h, --help show this help message and exit
--version show the versions of core jupyter packages and exit
--config-dir show Jupyter config dir
--data-dir show Jupyter data dir
--runtime-dir show Jupyter runtime dir
--paths show all Jupyter paths. Add --json for machine-readable format.
--json output paths as machine-readable json
--debug output debug information about paths
Available subcommands: bundlerextension console dejavu events execute kernel kernelspec lab labextension labhub
migrate nbclassic nbconvert nbextension notebook qtconsole run script server serverextension troubleshoot trust
Please specify a subcommand or one of the optional arguments.
终端输入:
jupyter notebook
如图,终端中显示 Jupyter Notebook 服务器的 URL 地址(通常是 http://localhost:8888/),复制如下任一链接(包括token部分)
每次Jupyter提供的token不一样,若重新启动Jupyter需重新填充token
终端输入:
jupyter notebook password
注意:输入密码不显示
建议设置简单密码(如123456)
import pandas as pd
# 创建一个简单的数据集
data = {'Name': ['John', 'Emma', 'Sam', 'Lisa'],
'Age': [28, 24, 32, 30],
'City': ['New York', 'London', 'Sydney', 'Paris']}
# 将数据集转换成 DataFrame
df = pd.DataFrame(data)
# 查看 DataFrame 的前几行数据
print(df.head())
鼠标右键