From 3f7fccec4ca2b577dd802a2a7a8e6700143158bd Mon Sep 17 00:00:00 2001 From: Daniel afx Date: Mon, 21 Sep 2020 01:17:14 +0300 Subject: [PATCH] install cython and buildozer inside the venv --- setup_venv.sh | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/setup_venv.sh b/setup_venv.sh index 771020c..21e259b 100755 --- a/setup_venv.sh +++ b/setup_venv.sh @@ -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