IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> 云服务器安装detectron2报错 -> 正文阅读

[人工智能]云服务器安装detectron2报错

硬件环境:

1、显卡:2080Ti
2、CUDA环境:cuda11.1

虚拟环境:

1、python:3.8
2、pytorch:1.10.1+cu111
3、torchvision :0.11.2+cu111

附上pytorch、torchvision对应cuda版本安装命令(以cuda11.1为例):

官方链接:Previous PyTorch Versions | PyTorch

# CUDA 11.1
pip install torch==1.10.1+cu111 torchvision==0.11.2+cu111 torchaudio==0.10.1 -f https://download.pytorch.org/whl/torch_stable.html

切记:安装环境条件一定要按照detectron2官方来:

  • Linux 或 macOS with Python ≥ 3.6

  • PyTorch ≥ 1.8 和与 PyTorch 安装相匹配的 Torchvision。

  • OpenCV是可选的,但演示和可视化需要

问题描述:

运行 python -m pip install -e detectron2,安装时中途出现报错:

Installing collected packages: detectron2
? Running setup.py develop for detectron2
? ? ERROR: Command errored out with exit status 1:
? ? ?command: /opt/conda/bin/python -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/user-data/DynamicHead-master/detectron2/setup.py'"'"'; __file__='"'"'/user-data/DynamicHead-master/detectron2/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps
? ? ? ? ?cwd: /user-data/DynamicHead-master/detectron2/
? ? Complete output (17 lines):
? ? running develop
? ? running egg_info
? ? writing detectron2.egg-info/PKG-INFO
? ? writing dependency_links to detectron2.egg-info/dependency_links.txt
? ? writing requirements to detectron2.egg-info/requires.txt
? ? writing top-level names to detectron2.egg-info/top_level.txt
? ? reading manifest file 'detectron2.egg-info/SOURCES.txt'
? ? adding license file 'LICENSE'
? ? writing manifest file 'detectron2.egg-info/SOURCES.txt'
? ? running build_ext
? ? /opt/conda/lib/python3.8/site-packages/setuptools/command/easy_install.py:144: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
? ? ? warnings.warn(
? ? /opt/conda/lib/python3.8/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
? ? ? warnings.warn(
? ? /opt/conda/lib/python3.8/site-packages/pkg_resources/__init__.py:123: PkgResourcesDeprecationWarning: 4.0.0-unsupported is an invalid version and will not be supported in a future release
? ? ? warnings.warn(
? ? error: [Errno 2] No such file or directory: "'/usr/local/cuda'/bin/nvcc"
? ? ----------------------------------------
ERROR: Command errored out with exit status 1: /opt/conda/bin/python -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'/user-data/DynamicHead-master/detectron2/setup.py'"'"'; __file__='"'"'/user-data/DynamicHead-master/detectron2/setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' develop --no-deps Check the logs for full command output.

找了很多文章,更新了很多包,但是都没有效果。最终发现原因为nvcc的路径有问题:

? error: [Errno 2] No such file or directory: "'/usr/local/cuda'/bin/nvcc"

?解决方案:

输入命令行:

export CUDA_HOME=/usr/local/cuda

最终安装成功!!!

?可能有用的参考链接:

?https://blog.csdn.net/qq_39031960/article/details/106211878

?https://blog.csdn.net/m0_37661841/article/details/108318364

?https://blog.csdn.net/chen645096127/article/details/111563985

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章           查看所有文章
加:2022-04-18 17:43:23  更:2022-04-18 17:48:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 10:40:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码