Tensorflow安装(基于pycharm无conda)

Tensorflow安装

  • 版本匹配
  • 更新pip和setuptools
  • 下载安装
  • 可能存在的报错

版本匹配

在官网查看python版本和匹配的tensorflow版本。
官网查看匹配信息
Tensorflow安装(基于pycharm无conda)_第1张图片
Tensorflow安装(基于pycharm无conda)_第2张图片
(1)python版本查看
cmd下,直接输入python
Tensorflow安装(基于pycharm无conda)_第3张图片
(2)查看cuda版本
nvcc -vision或nvcc -V

更新pip和setuptools

更新pip

python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple  

更新setuptools

pip3 install --ignore-installed setuptools -i https://pypi.tuna.tsinghua.edu.cn/simple

下载安装

tensorflow安装,选择自己对应的版本号

pip install --index-url https://pypi.douban.com/simple tensorflow==2.1.0

可能存在的报错

某个文件版本不对,根据提示删除重新下载合适的版本。

你可能感兴趣的:(tensorflow,pycharm,conda)