2.删除一个默认源 conda config --remove channels https://pypi.tuna.tsinghua.edu.cn/simple 3.增加一个默认源 # 清华源conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple# 阿里源conda config --add channels https://mirrors.aliyun.com/pypi/simple/#豆瓣源conda config --add c...
直接将pip.ini文件删除即可 conda 1.查看默认源 conda config --show-sources 2.删除一个默认源 conda config --remove channels https://pypi.tuna.tsinghua.edu.cn/simple 3.增加一个默认源 # 清华源conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple# 阿里源conda config --add cha...
pip config set global.index-url https//pypi.doubanio.com/simple/ 1. 2、清华源 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 1. 3、中科大源 pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple 1. 4、配置成功会出现: #保存路径 C:\Users...
配置的url只是指向了包环境这一层,而在使用「conda install xxx」的时候,是在url后面拼接xxx,所以也就找不到。并且根据网友的提示,改用http协议。 所以配置文件修改成如下: channels:- http://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/linux-64/show_channel_urls:true 其中「main」后面的后缀根据自己的...
在pip install --- 之后加上这些代码即可(分别为中科大源、清华源)# 例如安装Numpy库:pip install Numpy -i https://pypi.mirrors.ustc.edu.cn/simple/pip install Numpy -i https://pypi.tuna.tsinghua.edu.cn/simple 查看已添加的镜像 conda config --show channels ...
.condarc以点开头,一般表示 conda 应用程序的配置文件,可以用vim ~/.condarc打开,可以看到这里是用的清华源。 如果没有.condarc的话,可以手动添加,比如: conda config --add channelshttps://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free 1.先是创建虚拟环境 ...
1.清华大学镜像源 2.中科大源 3.临时使用某个源(只用于此条代码) 3.3镜像源的其他指令 1.查看已添加的镜像 2.删除镜像 4.conda的一些使用指令 4.1退出虚拟环境 4.2环境重命名 4.3查找所有创建过的环境 4.4查看当前环境下安装的包 4.5删除环境 Anaconda是机器学习中常用的工具,使用它可以为你配置若干多个独立的...
首先记录一下Anaconda安装目录的一个结构 今天使用Anaconda的过程中遇到一个问题,github上的一个项目需要一个旧版本的python的库在官方镜像中已经没有了,在清华源也找不到。 (找不到的包大家可以先在下面两个网…
安装好conda以后我们还需要更改conda的镜像地址,改成国内源,实现快速下载。 一般推荐清华大学源或者中科大源。 代码语言:javascript 复制 ## 设置清华大学源 conda config--add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config--add channels https://mirrors.tuna.tsinghua.edu.cn/...
近期新建一个虚拟环境,使用Navigator安装jupyter notebook一直安装不上,然后进入anaconda prompt执行conda install jupyter notebook一直出现如图所示的情况 目前使用的是conda forge通道,但是之前换成清华的源也没有用查看问题描述 关注问题写回答 邀请回答 好问题 ...