Linux 安装pycuda报错 !常见问题解决方法

Linux 安装 Pycuda 时可能会遇到这个问题:

第一种问题:
src/cpp/cuda.hpp:14:18: fatal error: cuda.h: No such file or directory
#include 
                  ^
error: command '/usr/bin/gcc' failed with exit code 1

解决方法:

export PATH=/usr/local/cuda-11.7/bin:/usr/local/cuda/bin:$PATH    // 即 cuda 的路径这里在root 模式下再包含一遍即可
pip install pycuda -i https://pypi.tuna.tsinghua.edu.cn/simple
第二种问题:

出现Python.h报错的问题

解决方法:
ubuntu
Python2x:

apt-get intsall -y python-dev

Python3x:

apt-get intsall -y python3-dev

centos
Python2x:

yum intsall -y python-devel

Python3x:

yum intsall -y python3-devel

你可能感兴趣的:(python,linux,python,ubuntu,centos)