in __init__ match = self._regex.search(version)TypeError: expected string or bytes-like object

in __init__
    match = self._regex.search(version)
TypeError: expected string or bytes-like object

报错位置:File "D:\ProgramData\Anaconda3\envs\people_3d\lib\site-packages\pkg_resources\_vendor\packaging\version.py", line 275

这个错误是  版本不是字符串或字节类型

网上大神有个 解决方案  但是不完全,就是

将match = self._regex.search(version)改为match = self._regex.search(str(version))。

我测试一下

又出现了新错误:

RuntimeError:
The detected CUDA version (11.2) mismatches the version that was used to compile
PyTorch (None). Please make sure to use the same CUDA versions.

CUDA版本与pytorch版本不对应。

走了走了,我先把CUDA的版本与pytorch的版本正好再来

你可能感兴趣的:(pytorch,python,开发语言)