Linux中Anaconda下安装Tensorflow1.14虚拟环境
这是基于已经安装完Anaconda的情况!步骤如下:step1:创建虚拟环境conda create --name tensorflow python=3.5step2:激活tensflow的环境:conda activate tensorflowstep3:# 安装tensorflowpip install tensorflow==1.14.0 -i http://...
这是基于已经安装完Anaconda的情况!
步骤如下:
step1:
创建虚拟环境conda create --name tensorflow python=3.5
step2:
激活tensflow的环境:conda activate tensorflow
step3:
# 安装tensorflow
pip install tensorflow==1.14.0 -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com module_name
step4:
# 安装对应版本的numpy
# -U是卸载旧版numpy
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple numpy==1.16.0
step5:
#测试一下tensorflow是否安装完成
import tensorflow as tf
hello = tf.constant('hello, tensorf')
sess = tf.Session()
print(sess.run(hello))
##############################################################################
以下可以忽略
# 安装包
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple cython==0.29.15
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple open3d-python==0.3.0
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple scikit-learn==0.21.3
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple scipy==1.4.1
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyYAML==5.1.2
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas==0.25.3
更多推荐
所有评论(0)