We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f070af commit ed5a926Copy full SHA for ed5a926
.github/workflows/build-and-release.yaml
@@ -29,7 +29,12 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- python -m pip install .[all]
+ python -m pip install -e .[all]
33
+
34
+ - name: Set LD_LIBRARY_PATH (Hack)
35
+ run: |
36
+ echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/runner/work/llama-cpp-python/llama-cpp-python/llama_cpp/" >> $GITHUB_ENV
37
38
39
- name: Build wheels
40
run: python -m cibuildwheel --output-dir wheelhouse
0 commit comments