问题1
AttributeError: module 'distutils' has no attribute 'version'
解决方法一:如果不想更新torch的话,可以更改setuptools版本
成功!
# If you use pip:
pip install setuptools==59.5.0
# For pip3:
pip3 install setuptools==59.5.0
# If you use conda:
conda install setuptools=59.5.0
问题2
RuntimeError: The following operation failed in the TorchScript interpreter.
Traceback of TorchScript (most recent call last):
RuntimeError: nvrtc: error: invalid value for --gpu-architecture (-arch)
解决方法一:尝试将pyg版本升级了
pip install torch-geometric==2.2.0
失败!
解决方法二:升级torch版本
pip install torch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 --index-url https://download.pytorch.org/whl/cu118
成功!参考这篇文章
问题3
核心段储存错误!
已经重新安装系统第三次了,参考文章在使用conda配置的过程中发现,直接使用conda install或者pip install配置的cudatoolkit均无法适配isaacgym
重新将所有版本降低,解决问题
问题4
不清楚暂未解决