我在尝试导入tensorflow时遇到了问题。我正在运行python 3.8:
Python 3.8.13 (default, Oct 19 2022, 17:54:22)
[Clang 12.0.0 ] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>>
我在conda环境中安装了tensorflow 2.10:
pip install tensorflow
我想我没有为M2安装适当版本的tensorflow ?知道怎么解吗?
注意:我试过https://www.mrdbourke.com/setup-apple-m1-pro-and-m1-max-for-machine-learning-and-data-science/
和其他选项包括"zsh:非法硬件指令python"在macbook pro M1上安装Tensorflow
但到目前为止还没有运气。
我在M2 Macbook上遇到了同样的问题,并通过安装这个依赖项来解决它(也使用venv):
pip install tensorflow-macos
我已经通过这个链接下载并安装了tensorflow
以下是我的安装步骤:
- install a venv:
python3 -m venv venv
. - 将(位于下载文件夹内的)文件拖到终端,最后添加。
install_venv.sh-p
- 选择venv的目录作为tensorflow
- 激活venv.
- 类型"python"> 尝试导入tensorflow:。
import tensorflow as tf
我正在使用Python 3.8.2.