( 查看系统上的虚拟环境:conda info --envs)
conda create -n tensorflow python=3.6
source activate tensorflow
pip install --upgrade https://download.tensorflow.google.cn/linux/gpu/tensorflow_gpu-1.8.0-cp36-cp36m-linux_x86_64.whl
若上面命令不能正确运行tensorflow则输入:
conda install tensorflow-gpu(conda有时更好用)
source deactivate
验证:
python
import tensorflow
import tensorflow as tf
tf.version
删除环境:
使用命令conda remove -n your_env_name(虚拟环境名称) --all, 即可删除。