macOS环境安装tensorflow

环境

操作系统:macOS Big Sur

Python版本:3.9

Tensorflow安装

#更新pip
$ pip install —upgrade pip

pip安装tensorflow

$ pip install tensorflow

注意!!下面这个不要安装,安装了会出错的

$ pip install tf-nightly

如果报错了,卸载重新安装

pip uninstall tf-nightly
pip uninstall tensorflow

如果碰到

ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out.

更进一步 更改源

进入根目录:cd ~/

进入.pip目录 cd .pip

如果不存在文件夹就新建mkdir .pip

进入 cd .pip

创建pip.conf文件 touch pip.conf

修改:vim pip.conf

[global]
timeout = 60
index-url = [https://pypi.doubanio.com/simple](https://pypi.doubanio.com/simple)

你可能感兴趣的:(macOS环境安装tensorflow)