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 channels https://mirrors.aliyun.com/pypi/simple/...
运行Conda 命令以验证新添加的镜像源是否生效 你可以通过运行以下命令来验证新添加的镜像源是否生效: bash conda config --show channels 这个命令会显示当前配置的通道列表,你应该能够在列表中看到你刚刚添加的阿里云镜像源。 另外,你也可以尝试安装一个包来验证镜像源是否正在被使用。例如: bash conda install num...
简介: conda和pip指定镜像源下载 conda conda install -c 镜像源 包名 pip pip install 包名 -i 镜像源 镜像源 https://pypi.doubanio.com/simple/ # 豆瓣 https://pypi.tuna.tsinghua.edu.cn/simple # 清华 https://pypi.mirrors.ustc.edu.cn/simple/ # 中国科学技术大学关键词: PIP conda PIP...
输入创建虚拟环境的命令:conda create --name spider python=3.7 出现如下的代码提示: (venv) E:\Document\programmLanguageExper\Python\ProjectFirst>conda create --name spider python=3.7Solving environment: done==> WARNING: A newer version of conda exists. <==current version: 4.5.11latest version: 4....