install cython and buildozer inside the venv
This commit is contained in:
parent
eee6738c3b
commit
3f7fccec4c
1 changed files with 9 additions and 2 deletions
|
@ -1,7 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
python3 -m pip install --upgrade --user pip setuptools virtualenv cython
|
||||
# init user specific pip modules
|
||||
python3 -m pip install --upgrade --user pip setuptools virtualenv
|
||||
|
||||
# init venv dir
|
||||
python3 -m virtualenv venv
|
||||
|
||||
# exec inside the venv
|
||||
pip install --upgrade cython buildozer
|
||||
source venv/bin/activate
|
||||
ls
|
||||
pip install -r requierments.txt
|
||||
echo " "
|
||||
pip freeze
|
||||
|
|
Loading…
Reference in a new issue