Anaconda
安装和配置
安装了Anaconda之后就不需要再用Python了
清华大学镜像站:https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/
安装教程:https://zhuanlan.zhihu.com/p/75717350
配置环境变量:
Anaconda安装根目录
Anaconda安装根目录\Scripts
Anaconda安装根目录\Library\bin
Anaconda安装根目录\Library\usr\bin
Anaconda安装根目录\Library\mingw-w64\bin
查看python版本:
python -V
查看conda版本
conda --version
查看conda是否安装成功
conda info
配置Anaconda prompts:
安装好Anaconda后,进入到 Anaconda Prompts
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
最后一条指令是,设置搜索时显示通道地址
查看是否已经修改好通道
conda config --show channels
介绍
Anaconda Navigator
介绍:https://www.jianshu.com/p/91365f343585
Jupyter Notebook
介绍:https://www.jianshu.com/p/91365f343585
可能出现的问题
使用PyCharm新建Anaconda项目
选中Anaconda下的Python,然后其他就可以自定义了
updating Python interpreter长时间更新
相关博客: