diff options
| author | Lex Neva <github.com@lexneva.name> | 2020-01-27 12:28:18 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-01-29 01:29:49 -0500 |
| commit | 8a913c9dcdd5225fc6fae7be8e1bb24b8b902249 (patch) | |
| tree | 45b4af7d9b30824b2f20870a23a737e86f4e4149 | |
| parent | d9fdb0a1a9e6c7d587e98bdd26f69dad1ad8c771 (diff) | |
wrong pip?
| -rw-r--r-- | .github/workflows/build.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7103c83..d4a7358e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,17 +41,17 @@ jobs: # wxPython doen't publish linux wheels in pypi wget -q https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04/wxPython-4.0.6-cp27-cp27mu-linux_x86_64.whl - pip install wxPython*.whl + python -m pip install wxPython*.whl # We can't use the shapely wheel because it includes the geos # library but with a weird file name. Details: # https://github.com/pyinstaller/pyinstaller/blob/61b1c75c2b0469b32d114298a63bf60b8d597e37/PyInstaller/hooks/hook-shapely.py#L34 - pip install --no-binary shapely -r requirements.txt + python -m pip install --no-binary shapely -r requirements.txt - pip install PyGObject + python -m pip install PyGObject - pip install -r requirements.txt - pip install pyinstaller==3.3.1 + python -m pip install -r requirements.txt + python -m pip install pyinstaller==3.3.1 tar -jxf inkscape-0.92.3.tar.bz2 rm inkscape-0.92.3.tar.bz2 |
