torch_points_kernels安装失败subprocess-exited-with-error
时间: 2023-12-11 07:33:56 浏览: 196
根据提供的引用内容,可能出现torch_points_kernels安装失败subprocess-exited-with-error的原因是由于缺少依赖项或者CUDA版本不兼容。以下是一些可能的解决方案:
1. 确保已经安装了正确版本的CUDA和cuDNN,并且已经将它们添加到了环境变量中。可以通过以下命令检查CUDA版本:
```shell
nvcc --version
```
2. 确保已经安装了正确版本的PyTorch和torchvision。可以通过以下命令检查PyTorch和torchvision版本:
```python
import torch
import torchvision
print(torch.__version__)
print(torchvision.__version__)
```
3. 确保已经安装了正确版本的GCC和G++。可以通过以下命令检查GCC和G++版本:
```shell
gcc --version
g++ --version
```
4. 确保已经安装了正确版本的Boost库。可以通过以下命令检查Boost库版本:
```shell
dpkg -l | grep libboost
```
如果以上解决方案都无法解决问题,可以尝试以下步骤:
1. 升级pip版本:
```shell
pip install --upgrade pip
```
2. 清除pip缓存:
```shell
pip cache clear
```
3. 重新安装torch_points_kernels:
```shell
pip install torch_points_kernels
```
阅读全文