安装Jupyter可能会出现的问题

安装Jupyter可能会出现的问题

1. conda install nb_conda 报错可以尝试

复制代码
pip jupyter notebook

2. 进入Jupyter没有反应可以选择重装pyzmq(好像对版本没有要求)

卸载

复制代码
pip uninstall pyzmq

pip install pyzmq

报错

查阅了一下, pip的时候各种关卡限制了它的网速,连接超时,所以需要自己设定安装源,

我这里选择装的是19.0.2版本

复制代码
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn --user pyzmq==19.0.2

验证是否成功,没有kunpytorch39(自己的环境),可以直接选择python3

shift加回车True显示成功

使用jupyter步骤

复制代码
conda activate kunpytorch39
jupyter notebook
相关推荐
金銀銅鐵1 天前
[Python] 从《千字文》中随机挑选汉字
后端·python
cup111 天前
[技术复盘] Windows Python 打包实战:Nuitka 环境踩坑总结与 CI 自动化构建全指南
python·ai·环境变量·ci·nuitka·skill
aqi001 天前
15天学会AI应用开发(七)有了大模型为什么还要引入RAG
人工智能·python·大模型·ai编程·ai应用
金銀銅鐵1 天前
用 Python 实现 Take-Away 游戏
python·游戏
copyer_xyf1 天前
Agent 流程编排
后端·python·agent
copyer_xyf1 天前
Agent RAG
后端·python·agent
copyer_xyf1 天前
【RAG】向量数据库:milvus
后端·python·agent
copyer_xyf1 天前
Agent 记忆管理
后端·python·agent
星云穿梭2 天前
用Python写一个带图形界面的学生管理系统——完整教程
python