[Fix] python -m pip upgrade in windows (#1525)

pull/1526/head
liukuikun 2022-11-14 18:38:15 +08:00 committed by GitHub
parent 8737675445
commit 31c41d82c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ jobs:
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: Upgrade pip - name: Upgrade pip
run: pip install pip --upgrade run: python -m pip install --upgrade pip
- name: Install lmdb - name: Install lmdb
run: pip install lmdb run: pip install lmdb
- name: Install PyTorch - name: Install PyTorch

View File

@ -112,7 +112,7 @@ jobs:
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: Upgrade pip - name: Upgrade pip
run: pip install pip --upgrade run: python -m pip install --upgrade pip
- name: Install lmdb - name: Install lmdb
run: pip install lmdb run: pip install lmdb
- name: Install PyTorch - name: Install PyTorch