windows10安装TensorFlow并集成到idea
安装Python查看https://mp.****.net/postedit/82353224
测试pip版本:pip -v 如果已经安装了Python,则进入Python scripts文件夹下,运行pip -v
更新pip : python -m pip install -U pip
安装TensorFlow(CPU环境)
pip3 install --ignore-installed --upgrade tensorflow
2. 验证
输入命令:python
import tensorflow as tf
3. 集成idea
首先在idea上file->setting->plugins->browse repositories,输入Python
install并重启
4. 创建Python项目,选中local的Python即可,编写一个测试程序,查看是否正确引入tf