赞
踩
本人电脑使用的是Windows10系统,提前安装了Anaconda
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda create -n keras python=3.6
conda env list
或 conda info -e
(conda/source) activate keras
conda remove -n env_name --all
pip install package_name -i 国内镜像源
https://pypi.tuna.tsinghua.edu.cn/simple
https://mirrors.aliyun.com/pypi/simple/
https://pypi.mirrors.ustc.edu.cn/simple/
http://pypi.hustunique.com/
http://pypi.sdutlinux.org/
http://pypi.douban.com/simple/
https://pypi.python.org/simple
pip install tensorflow==1.9.0
# 这是CPU版的tensorflow安装方式pip install tensorflow-gpu -i https://pypi.doubanio.com/simple/
# 从豆瓣镜像中下载速度比较快# 程序可能会出现一些警告信息,但是不会报错,且能看到运行结果
import tensorflow as tf
message = tf.constant('Hello tensorflow!')
with tf.Session() as sess:
print(sess.run(message))
# 或者下面的代码
print(tf.test.is_gpu_available())
pip install keras==2.1.6
import keras
来查看keras是否安装成功。# 去掉python输出的警告:但是切记,不要盲目设置取消输出。
import warnings
warnings.filterwarnings("ignore")
import keras # 导入keras模块
keras.__version__ # 查看keras的安装版本
import tensorflow as tf
tf.__version__ # 查看tensorflow的安装版本
pip install matplotlib
pip install pandas
pip install scikit-learn
由于本人将使用的是jupyter notebook编程环境,所以需要进一步设置:
conda activate env_name
pip install ipykernel -i https://pypi.tuna.tsinghua.edu.cn/simple
python -m ipykernel install --user --name 环境名称 --display-name "在jupyter中显示的环境名称"
,注意不要忘记了双引号。例如:python -m ipykernel install --user --name test1 --display-name “test1”Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。