当前位置: 首页 > 工具软件 > CuPy > 使用案例 >

安装cupy遇到的坑

班玉堂
2023-12-01

一、安装cupy时候出现No matching distribution found for cupy-cuda92

安装之前要查看自己已经安装CUDA的版本

在cmd下运行:

nvcc -V

然后根据版本下载

# For CUDA 8.0
pip install cupy-cuda80
 
# For CUDA 9.0
pip install cupy-cuda90
 
# For CUDA 9.1
pip install cupy-cuda91
 
# For CUDA 9.2
pip install cupy-cuda92
 
# For CUDA 10.0
pip install cupy-cuda100
 
# For CUDA 10.1
pip install cupy-cuda101
 
# Install CuPy from source
pip install cupy


 类似资料: