TensorFlow CPU安装
1 环境要求windows 7python 3.5--3.72.miniconda3 安装3. 查看版本打开conda promptpip -V4. 安装tensorflow 2.3 cpu版pip install tensorflow-cpu==2.3.0 -i https://pypi.douban.com/simple/5.验证python>>import tensorflow
·
1 环境要求
windows 7
python 3.5--3.7
2.miniconda3 安装
3. 查看版本
打开conda prompt
pip -V
4. 安装tensorflow 2.3 cpu版
pip install tensorflow-cpu==2.3.0 -i https://pypi.douban.com/simple/
5.验证
python
>>import tensorflow as tf
>>print(tf.__version__)
版本
>>exit()
6.安装绘图和web开发环境
pip install matplotlib notebook -i https://pypi.douban.com/simple/
7.打开notebook
jupyter notebook
8. 安装numpy pandas
pip install numpy pandas sklearn -i https://pypi.doubanio.com/simple/
更多推荐
已为社区贡献1条内容
所有评论(0)