Commit 08ccefec30aef875b37f201b6cb742877681a29c
1 parent
f7c87549
Exists in
master
Update install.sh for Linux
Showing
1 changed file
with
7 additions
and
3 deletions
Show diff stats
install/install.sh
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | -# pyreverse | ||
4 | echo "===== Requirements for pip" | 3 | echo "===== Requirements for pip" |
5 | echo "pip3 install -r requirements.txt" | 4 | echo "pip3 install -r requirements.txt" |
6 | -pip3 install -r requirements.txt | 5 | +pip-compile requirements.in |
6 | +pip3 install --user -r requirements.txt | ||
7 | echo "pip3 install -r requirements_dev.txt" | 7 | echo "pip3 install -r requirements_dev.txt" |
8 | -pip3 install -r requirements_dev.txt | 8 | +pip-compile requirements_dev.in |
9 | +pip3 install --user -r requirements_dev.txt | ||
9 | 10 | ||
11 | +echo "===== Extension" | ||
12 | +cd ../src/wrapper_flipro | ||
13 | +python3 setup.py build_ext --inplace --user |