解决python3.7环境下无法安装Tensorflow方法之一

  1. 在 anaconda 中使用conda create -n tensorflow python=3.3创建 tensorflow 虚拟环境
  2. 安装交互环境(ipykernel) conda install ipykernel
  3. 启动tensorflow虚拟环境activate tensorflow解决python3.7环境下无法安装Tensorflow方法之一
  4. 将虚拟环境 tensorflow 写入到 Notebook 的 kernel 中: python -m ipykernel install --name tensorflow --display-name "Python tensorflow"
    解决python3.7环境下无法安装Tensorflow方法之一
  5. 重启 Jupyter Notebook,输入jupyter kernelspec list查看当前python环境
    解决python3.7环境下无法安装Tensorflow方法之一
  6. 搞定解决python3.7环境下无法安装Tensorflow方法之一