kopia lustrzana https://github.com/inkstitch/inkstitch
24 wiersze
471 B
Bash
24 wiersze
471 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
uname -a
|
|
python3 --version
|
|
python3 -m pip --version
|
|
python3 -m pip debug
|
|
|
|
python3 -m venv virtualenv
|
|
source virtualenv/bin/activate
|
|
|
|
virtualenv/bin/pip debug
|
|
virtualenv/bin/pip install pycairo
|
|
virtualenv/bin/pip install PyGObject==3.50.0
|
|
|
|
virtualenv/bin/pip install wxPython
|
|
|
|
virtualenv/bin/pip install -r requirements.txt
|
|
# for networkx
|
|
virtualenv/bin/pip install pandas
|
|
|
|
virtualenv/bin/pip install pyinstaller
|
|
|
|
deactivate
|