conda安装TensorFlow

注:python3.6下安装后会出现import tensorflow失败的情况,所以创建conda环境时,选择python3.7版本。

创建环境
conda create -n tensorflow pyhon=3.7
激活环境
conda activate tensorflow
安装tensorflow
conda install tensorflow
或者pip install tensorflow
安装过程可能会遇到两个问题
1。ERROR: Cannot uninstall 'wrapt
执行:pip install -U --ignore-installed wrapt enum34 simplejson netaddr
2。更新setuptools
pip install --upgeade -I setuptools
(https://blog.csdn.net/zinkin14/article/details/79235314)

你可能感兴趣的:(Python学习)