今天在安装mmdetection3D时遇到了这个问题,主要是在安装mim工具包的时候,弹出以下问题
ERROR: Could not install packages due to an OSError: [WinError 5] 拒绝访问。: 'c:\\programdata\\anaconda3\\envs\\open-mmlab\\lib\\site-packages\\__pycache__\\typing_extensions.cpython-37.pyc' Consider using the –user option or check the permissions.
应该时权限问题,加入–user 解决
即原有指令为pip install openmim
现在使用:pip install --user openmim

在安装mmdetection3D过程中遇到权限问题,具体表现为在安装mim工具包时出现WinError5,提示拒绝访问。解决方案是使用pip的--user选项来安装,避免修改系统路径下的文件权限。原有的安装命令为pipinstallopenmim,修正后的命令应为pipinstall--useropenmim。

528

被折叠的 条评论
为什么被折叠?



