conda config --add envs_dirs newdir # 增加环境路径newdir conda config --remove envs_dirs newdir #删除环境路径newdir conda config --remove envs_dirs newdir #删除环境路径newdir conda config --remove pkgs_dirs newdir #删除缓存路径newdir conda config --add envs_dirs dir#添加环境路径newdi...
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ conda config --set show_channel_urls yes 中科大conda镜像 conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.ustc.edu.cn/anaconda/pkg...
6. 安装其他非conda依赖,例如pip install *.whl 7. 删除conda的配置文件中你刚刚建立的pkgs_dirs路径,否则以后所有安装缓存文件都会保存在此路径。 conda config --remove pkgs_dirs /home/user/demos/face_pkgs
conda config --remove pkgs_dirs /different_path/to/a/anaconda/pkgs Note this will not remove the directories, only stop Conda from looking there. You may want to manually remove the directories after this. Also, some environments may still appear listed inconda env listdue t...
conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ 恢复为默认的镜像源(即从官网下载包) shell conda config --remove-key channels 设置搜索时显示通道地址,如果C:\Users(用户)\username\路径下没有.condarc文件,则需要在cmd命令行执行如下命令 ...
conda config --set show_channel_urls yes 1. 这个目的是在C盘中创建一个.condarc文件 双击它,并添加你想要环境放的位置: envs_dirs: - H:\Miniconda\envs pkgs_dirs: - H:\Miniconda\pkgs 1. 2. 3. 4. 查看是否修改成功 conda config --show ...
更改默认安装路径:conda config --set envs_dirs /path/to/envs 更改默认下载路径:conda config --set pkgs_dirs /path/to/pkgs 这些是一些 Conda 的高级功能和技巧的常见用法,可以帮助你更好地管理 Python 环境和包。 还有一些更深入的内容供大家参考: ...
删除源:conda config --remove channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ 切换回默认源:conda config --remove-key channels 使用源的情况也可在路径C:\Users\ccs下的.condarc文件中查看 ②临时换源(中科大源为例): 在命令后添加-i https://pypi.mirrors.ustc.edu.cn/simple/ ...
conda config --remove channels defaults # 移除默认软件包源 ``` 2. `default_channels`:设置默认的软件包源通道。可以使用此参数将指定的通道设置为默认。示例: ``` conda config --set default_channels conda-forge # 将 conda-forge 设置为默认软件包源 ``` 3. `envs_dirs`:设置Conda环境的存储路径...
conda config --show #查看已经安装过的镜像源 查看配置项channels,如果显示带有tsinghua,则说明已安装过清华镜像。 conda config--removechannels https://mirrors.tuna.tsinghua.edu.cn/tensorflow/linux/cpu/#删除清华镜像 conda config--addchannels https://mirrors.ustc.edu.cn/anaconda/pkgs/free/#添加 中科大...