【知识图谱日记1.2】2019-03-04 centos7keras环境搭建

keras 依赖Numpy 和Scipy
直接使用上一步的python36环境,用pip安装

conda install numpy
conda install scipy

这里发现下载速度只有不到50k/s,所以需要进行换源

conda config --add channels 'https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/'
conda config --set show_channel_urls yes

换源完成后运行:

conda install numpy
conda install scipy
conda install keras

速度就很快了

你可能感兴趣的:(【知识图谱日记1.2】2019-03-04 centos7keras环境搭建)