我在尝试安装TensorFlow时遇到了问题。我已经用pip安装了numpy、pillow和pygame,但我无法安装TensorFlow。我在M1 MacBook上运行MacOS Ventura 13.3.1。我现在用的是Python 3.11.3。
我已经尝试重新安装Python和pip。当我尝试安装Tensorflow时,我一直收到这个错误:
ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)
ERROR: No matching distribution found for tensorflow
1条答案
按热度按时间pgvzfuti1#
您可以使用Anaconda Navigator在Mac OS中安装TensorFlow。
请按照以下步骤操作:
conda create --name tfVirEnv
conda activate tfVirEnv
pip install --upgrade pip
pip install tensorflow #or conda install tensorflow
Python
导入tensorflow作为tf
tf.版本
conda install notebook
jupyter笔记本
请看一下这个链接作为参考。谢谢你。