通过 conda 安装 的 detectron2

detectron2官网 发现预编译的版本最高支持 pytorch1.10、cuda11.3。(2023-12-26)

1、安装 conda 环境。

bash 复制代码
 conda create --name detectron2 python=3.8

2、安装 pytorch1.10 和 cuda11.3。

bash 复制代码
pip3 install torch==1.10.0+cu113 torchvision==0.11.1+cu113 torchaudio==0.10.0+cu113 -f https://download.pytorch.org/whl/cu113/torch_stable.html

3、安装 detectron2。

bash 复制代码
python -m pip install detectron2 -f \
  https://dl.fbaipublicfiles.com/detectron2/wheels/cu113/torch1.10/index.html

4、测试。

bash 复制代码
(detectron2) ai200@ubuntu16:/dev_sdc/wujp_py$ python
Python 3.8.18 (default, Sep 11 2023, 13:40:15) 
[GCC 11.2.0] :: Anaconda, Inc. on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import detectron2
>>> 
相关推荐
糖豆豆今天也要努力鸭12 小时前
torch.__version__的torch版本和conda list的torch版本不一致
linux·pytorch·python·深度学习·conda·torch
IT果果日记14 小时前
ubuntu 安装 conda
linux·ubuntu·conda
Jurio.1 天前
Conda 管理项目环境
人工智能·python·深度学习·conda·virtualenv·pip
engchina2 天前
如何重命名 Conda 环境 - 详细教程
conda
星域_03zhan3 天前
pycharm在使用conda虚拟环境时Terminal爆红问题
ide·pycharm·conda
请一直在路上4 天前
conda 常用命令
linux·python·conda
脑子不好真君4 天前
解决CondaError: Run ‘conda init‘ before ‘conda activate‘
conda·无法激活环境
小喵要摸鱼5 天前
Anaconda 和 conda 是什么关系?就像 pip 和 python 一样吗
python·conda·pip·anaconda
Eric.Lee20215 天前
conda创建 、查看、 激活、删除 python 虚拟环境
linux·开发语言·人工智能·python·conda
hong1616887 天前
Conda环境与Ubuntu环境移植详解
linux·ubuntu·conda