Jupyter 505

1.好久没用anaconda下的jupyter notebook 创建项目时候505了

2.重新安装jupyter(原来我是6.x.x版本)

3.然后报错:

复制代码
UnavailableInvalidChannel: The channel is not accessible or is invalid.
  channel name: simple
  channel url: https://pypi.python.org/simple
  error code: 404

解决方法:

复制代码
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://repo.continuum.io/pkgs/free/ conda config --add channels https://repo.continuum.io/pkgs/main/ conda config --set show_channel_urls yes

第一行remove一定要remove的是

复制代码
conda config --show channels 
相关推荐
程序员:钧念2 小时前
深度学习与强化学习的区别
人工智能·python·深度学习·算法·transformer·rag
数据与后端架构提升之路2 小时前
TeleTron 源码揭秘:如何用适配器模式“无缝魔改” Megatron-Core?
人工智能·python·适配器模式
hele_two3 小时前
快速幂算法
c++·python·算法
l1t4 小时前
利用DeepSeek将python DLX求解数独程序格式化并改成3.x版本
开发语言·python·算法·数独
Cemtery1166 小时前
Day26 常见的降维算法
人工智能·python·算法·机器学习
星空椰7 小时前
快速掌握FastAPI:高效构建Web API
python·fastapi
塔尖尖儿7 小时前
Python中range()到底是什么演示
python
Ethan-D7 小时前
#每日一题19 回溯 + 全排列思想
java·开发语言·python·算法·leetcode
Echoo华地8 小时前
idea运行程序默认线程为daemon线程的问题
java·ide·intellij-idea