Looking in indexes: https://pypi.org/simple, https://pypi.ngc.nvidia.com ERROR: Could not find a version that satisfies the requirement detectron2 (from versions: none) ERROR: No matching distribution found for detectron2 WARNING: You are using pip version 21.3.1; however, version 23.1.2 is available. You should consider upgrading via the 'D:\CODEFILE\nsff_pl-master\venv\Scripts\Scripts\python.exe -m pip install --upgrade pip' comman
时间: 2024-02-01 21:12:31 浏览: 203
解决pip install psycopg2出错问题
5星 · 资源好评率100%
这个错误提示是因为你在使用pip安装detectron2时,没有找到对应的版本。你可以尝试使用以下命令来安装detectron2:
```
pip install detectron2 -f https://dl.fbaipublicfiles.com/detectron2/wheels/cu111/torch1.8/index.html
```
这个命令会从 Facebook AI Research 的公共文件库中下载detectron2的wheel包并安装。
另外,警告提示你的pip版本比较老,可以使用以下命令来升级pip:
```
D:\CODEFILE\nsff_pl-master\venv\Scripts\Scripts\python.exe -m pip install --upgrade pip
```
这个命令会使用你项目虚拟环境下的Python解释器来升级pip。
阅读全文