在Python中安装jupyter

1:确保pip为最新版本,老版本可能存在一些依赖问题。

pip3 install --upgrade pip

2:使用以下命令安装jupyter

pip3 install jupyter

3:升级安装的jupyter

pip3 install --upgrade jupyter

4:启动jupyter

jupyter notebook --ip=127.0.0.1 --port=8000

jupyter notebook

5:关闭jupyter

Ctrl+C

你可能感兴趣的:(python,jupyter,pycharm)