Win10系统 安装Anaconda+TensorFlow+Keras+scikit-learn

一、安装anaconda

直接官网下载 https://www.anaconda.com/distribution/

二、安装tensorflow、Keras、scikit-learn

1、创建一个虚拟环境:
conda create --name myvenv

2、接下来启动这个虚拟环境:
activate myvenv

3、设置国内源
在更新包的时候,默认源速度较慢,可以使用国内源

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

4、安装ipython:
Win10系统 安装Anaconda+TensorFlow+Keras+scikit-learn
5、安装tensorflow和Keras
Win10系统 安装Anaconda+TensorFlow+Keras+scikit-learn
6、安装 scikit-learn
Win10系统 安装Anaconda+TensorFlow+Keras+scikit-learn

文章内容仅代表个人观点,如有不正之处,欢迎批评指正,谢谢大家。