下载链接:清华镜像。按照自己系统选择最新版的anaconda3。
二、安装默认安装,可以自己选择安装路径。
三 、准备工作用系统的CMD也好,用Anaconda prompt也好,在命令行输入
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 --set show_channel_urls yes
这样就能使用清华的镜像,下载库的速度比默认的国外源速度快。
四、安装keras打开anaconda,打开时间受电脑配置影响
选择environments
选择一个虚拟环境,比如base。点击另一个红箭头,点开选择not installed
搜索keras,并选中,之后apply,等待结束。
点击base右侧三角形,并选择open with jupyter notebook
点击new,并信件python3
输入
import keras
并运行
出现下列结果,安装成功。