通过 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
>>> 
相关推荐
MonkeyKing_sunyuhua14 小时前
ubuntu22.04安装conda
conda·miniconda
Json____1 天前
python的安装环境Miniconda(Conda 命令管理依赖配置)
开发语言·python·conda·miniconda
东成20222 天前
从配置anaconda到配置pycharm
开发语言·python·conda
曼彻斯特的海边3 天前
CentOS 7上安装Conda
linux·centos·conda
小酒窝.3 天前
深度学习工具 Anaconda、conda、CUDA、cuDNN、pytorch、Cuda Toolkit 解释
pytorch·深度学习·conda
mhl11074 天前
Linux 上安装 conda 步骤实现
linux·运维·ubuntu·centos·ssh·conda·运维开发
天冬忘忧4 天前
PySpark 本地开发环境搭建与实践
spark·conda·pyspark
每天都要写算法(努力版)5 天前
【已解决,含泪总结】Ubuntu18.04下非root用户Anaconda3卸载重装,conda install终于不再报错
服务器·conda·anaconda3
随时间进步5 天前
conda进行本地环境打包和转移使用
linux·服务器·人工智能·深度学习·神经网络·机器学习·conda
仙草哥哥8 天前
使用virtualenv/Anaconda/Miniconda创建python虚拟环境
python·conda·virtualenv