pytorch 无法在苹果M1中安装torch 1.7.0

iszxjhcz  于 2023-01-05  发布在  其他
关注(0)|答案(1)|浏览(368)

我尝试使用以下命令在我的Mac M1上安装yolov5:

git clone https://github.com/ultralytics/yolov5.git

然后:

cd yolov5

但当我尝试使用以下命令从requirments.txt文件安装requirmets时:

pip install -r requirements.txt

安装完成,但在结束时显示以下错误:

ERROR: Could not find a version that satisfies the requirement torch>=1.7.0 (from versions: none)
ERROR: No matching distribution found for torch>=1.7.0

我不知道必须使用哪个版本的torch才能完成安装

bwntbbo3

bwntbbo31#

看起来这个问题在最新的python版本中是一个常见问题。
请尝试将您的python版本降级到3.8,然后重试requirements.txt
https://github.com/pytorch/pytorch/issues/47354

相关问题