我是在conda虚拟环境下下载的WARNING: Requirement 'pycuda-2022.1+cuda116-cp38-cp38-win_amd64.whl' looks like a filename, but the file does not exist Processing d:\pycuda-2022.1+cuda116-cp38-cp38-win_amd64.whl ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: 'D:\\pycuda-2022.1+cuda116-cp38-cp38-win_amd64.whl'
时间: 2023-11-25 19:07:50 浏览: 371
这个错误通常是由于文件路径不正确导致的。在 conda 虚拟环境中安装 whl 文件时,您需要确保在虚拟环境中打开命令提示符或终端,然后使用 `cd` 命令切换到包含 whl 文件的目录中。
如果您已经在正确的目录中,请检查文件名拼写是否正确。最好使用复制并粘贴文件名来避免拼写错误。
另外,您也可以尝试使用完整的文件路径来安装 whl 文件,例如:
```
pip install D:\pycuda-2022.1+cuda116-cp38-cp38-win_amd64.whl
```
请注意,这取决于您下载文件的位置和驱动器号。
阅读全文