name: Install bitsandbytes | |
on: [push, pull_request] | |
jobs: | |
install-dependency: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' # Specify the Python version you need | |
- name: Install bitsandbytes | |
run: | | |
import os | |
os.system("pip install -i https://pypi.org/simple/ bitsandbytes") | |
shell: python | |