This repository was archived by the owner on Jul 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +19
-12
lines changed
Expand file tree Collapse file tree 1 file changed +19
-12
lines changed Original file line number Diff line number Diff line change @@ -50,19 +50,26 @@ jobs:
5050 - name : prepare python package windows
5151 if : runner.os == 'windows'
5252 run : |
53- where python
54-
55-
56- - name : Install dependencies Windows and Linux
57- if : runner.os == 'windows' || runner.os == 'linux '
53+ PYTHON_PATH=$( where python)
54+ echo $PYTHON_PATH
55+
56+ - name : prepare python package windows
57+ if : runner.os != 'windows'
5858 run : |
59- python3 -m pip install --upgrade pip
60- python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.cuda.txt
59+ PYTHON_PATH=$(which python)
60+ echo $PYTHON_PATH
61+
62+
63+ # - name: Install dependencies Windows and Linux
64+ # if: runner.os == 'windows' || runner.os == 'linux'
65+ # run: |
66+ # python3 -m pip install --upgrade pip
67+ # python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.cuda.txt
6168
62- - name : Install dependencies Mac
63- if : runner.os == 'macOS'
64- run : |
65- python3 -m pip install --upgrade pip
66- python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.txt
69+ # - name: Install dependencies Mac
70+ # if: runner.os == 'macOS'
71+ # run: |
72+ # python3 -m pip install --upgrade pip
73+ # python3 -m pip install -r ${{env.MODEL_DIR}}/requirements.txt
6774
6875
You can’t perform that action at this time.
0 commit comments