简体   繁体   English

使用 pip 在 Mac OS Big Sur 上安装 Tensorflow

[英]Installing Tensorflow on Mac OS Big Sur with pip

System used:使用的系统:

MacOS Big Sur MacBook Air M1 processor - 
Python 3.8.2 - 
pip 20.3.3

I am trying to install Tensorflow 2 on my Mac, I have all the requirements needed, I tried我正在尝试在我的 Mac 上安装Tensorflow 2 ,我有所有需要的要求,我试过了

python -m pip install tensorflow but I receive these two errors: python -m pip install tensorflow但我收到这两个错误:

ERROR: Could not find a version that satisfies the requirement tensorflow (from versions: none)错误:找不到满足 tensorflow 要求的版本(来自版本:无)
ERROR: No matching distribution found for tensorflow错误:未找到 tensorflow 的匹配分布

I also tried to download from https://pypi.org/project/tensorflow/2.4.0/#files the last release for mac and python 3.8 and running python -m pip install /Users/vb/Downloads/tensorflow-2.4.0-cp38-cp38-macosx_10_11_x86_64.whl I also tried to download from https://pypi.org/project/tensorflow/2.4.0/#files the last release for mac and python 3.8 and running python -m pip install /Users/vb/Downloads/tensorflow-2.4.0-cp38-cp38-macosx_10_11_x86_64.whl

I receive this error:我收到此错误:

ERROR: tensorflow-2.4.0-cp38-cp38-macosx_10_11_x86_64.whl is not a supported wheel on this platform.错误:tensorflow-2.4.0-cp38-cp38-macosx_10_11_x86_64.whl 不是此平台支持的轮子。

I think it is something really stupid I am missing but I don't know what it is.我认为这是我想念的非常愚蠢的东西,但我不知道它是什么。 I googled a lot and some other people found a solution to similar problems but not exactly to mine.我用谷歌搜索了很多,其他一些人找到了类似问题的解决方案,但不完全是我的。 Does anyone have any clue or had the same issue?有没有人有任何线索或有同样的问题?

Check this one: https://github.com/apple/tensorflow_macos检查这个: https://github.com/apple/tensorflow_macos

Once downloaded you may use install_venv.sh to install tf with virtual environment.下载后,您可以使用 install_venv.sh 在虚拟环境中安装 tf。

Or install it to your current setup by running the command below:或者通过运行以下命令将其安装到当前设置:

python3 -m pip install --upgrade ~/Downloads/tensorflow_macos/x86_64/*.whl --no-dependencies --force

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM