目录
Tensorflow
安装版本介绍的一个网址
https://tensorflow.google.cn/install/source
找到自己的环境支持的版本
pip安装命令
sudo pip3 install tensorflow-gpu==1.4.0
查看tensorflow版本
在python环境中输入:
import tensorflow as tf
tf.__version__ (查看版本)
tf.__path__ (查看路径)
卸载命令
# for Python 2.7
sudo pip uninstall tensorflow
# for Python 3.n
sudo pip3 uninstall tensorflow
Keras
# Keras 安装
>>> pip install keras -U --pre
验证
进入python命令环境
import keras
下载keras开发包
>>> git clone https://github.com/fchollet/keras.git
>>> cd keras/examples/
>>> python mnist_mlp.py
reference
https://blog.csdn.net/u014797226/article/details/80229887