conda config --show-source
conda config --add channels 源名称或链接
例如
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --remove channels 源名称或链接
conda config --remove-key channels
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/peterjc123/
conda config --add channels https://pypi.tuna.tsinghua.edu.cn/simple/
conda config --add channels http://pypi.doubanio.com/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
pip install -i http://mirrors.aliyun.com/pypi/simple tensorflow --trusted-host mirrors.aliyun.com
pytorch官网下载whl文件的路径
下载pytorch的whl文件的路径torch_stable
conda config --set show_channel_urls yes
若需要PyTorch需添加
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch
这里是引用https://blog.csdn.net/weixin_44201449/article/details/99693943
conda --version
或
conda -V
conda update conda
conda update anaconda
conda update anaconda-navigator #update最新版本的anaconda-navigator
pip show pip
或
pip --version
python -m pip install --upgrade pip
python --version
或
python -V
这里是引用
https://blog.csdn.net/viczoe/article/details/88905276
conda update python #更新python
conda install python=3.6 #安装3.6版本python
需要在python下
>>import tensorflow as tf
>>tf.__version__
>#双下划线
查看tensorflow各个版本
(查看会发现有一大堆TensorFlow源,但是不能随便选,选择可以用查找命令定位)
anaconda search -t conda tensorflow
- conda info -e #查看当前系统下的环境
- conda create -n env_name python=2.7#指定python版本为2.7
- conda create -n env_name numpy matplotlib python=2.7#同时安装必要的包
- activate env_name #开启xxxx环境(env_name为环境名)
- deactivate #关闭环境
- conda remove -n env_name --all #移除xxxx环境
- conda create --name newname --clone oldname #克隆环境
- conda remove --name oldname --all #彻底删除旧环境
- conda env list #显示所有的虚拟环境
- conda info --envs #显示所有的虚拟环境
- conda clean -p #删除没有用的包
- conda clean -t #tar打包
- conda clean -y -all #删除所有的安装包及cache
ERROR: Cannot uninstall 'wrapt'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
解决办法
pip install wrapt --ignore-installed
ImportError: DLL load failed: 动态链接库(DLL)初始化例程失败。
2020/05更新