File size: 490 Bytes
cafc953
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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