Open mjwweb opened 2 weeks ago
The cu125 repo URL still returns 404.
I figured out the issue is related to my conda environment. The prebuild CUDA wheels work on my system level (Ubuntu) but not in my Conda environment.
Here's a workaround I found that works for me:
Install build-essential and libgomp1 from apt repository:
$ sudo apt install build-essential libgomp1
Set path to system libraries:
$ export LD_LIBRARY_PATH="/usr/lib/x86_64-linux-gnu:$LD_LIBRARY_PATH"
Then proceed with the prepuilt wheel installation.
I found this to help:
$ sudo apt install gcc-11 $ sudo apt install g++-11 $ CXX=g++-11 CC=gcc-11 pip install llama-cpp-python
There are multiple issues with the CUDA wheels:
The cu125 repository returns 404:
While cu124 exists, pip fails to find wheels using --extra-index-url:
Even direct wheel installation fails due to missing CUDA dependencies:
Results in:
This setup was working a few weeks ago without requiring manual CUDA installation.
Environment: