update requirements and install.sh
This commit is contained in:
parent
edfd3640e6
commit
f3fbd1d11b
|
@ -0,0 +1,23 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
## Save current virtual environment
|
||||||
|
## activate current venv
|
||||||
|
#source ./venv/bin/activate
|
||||||
|
|
||||||
|
## pip freeze requirements
|
||||||
|
#pip freeze > requirements.txt
|
||||||
|
|
||||||
|
## deactivate current venv
|
||||||
|
#source ./venv/bin/deactivate
|
||||||
|
|
||||||
|
# Export virtual environment
|
||||||
|
# Create new venv
|
||||||
|
#virtualenv --python=/usr/bin/python<version of python> <path/to/new/virtualenv/>
|
||||||
|
# or
|
||||||
|
python3 -m venv venv # to be tested
|
||||||
|
|
||||||
|
#activate new venv
|
||||||
|
source ./venv/bin/activate # to be tested wit python3 -m venv
|
||||||
|
|
||||||
|
# pip install
|
||||||
|
pip install -r requirements.txt
|
|
@ -1,6 +1,19 @@
|
||||||
|
altgraph==0.16.1
|
||||||
|
cachetools==3.1.1
|
||||||
feedgen==0.8.0
|
feedgen==0.8.0
|
||||||
|
google-api-python-client==1.7.11
|
||||||
|
google-auth==1.7.2
|
||||||
|
google-auth-httplib2==0.0.3
|
||||||
|
httplib2==0.14.0
|
||||||
lxml==4.4.2
|
lxml==4.4.2
|
||||||
|
numpy==1.17.4
|
||||||
|
Pillow==6.2.1
|
||||||
pkg-resources==0.0.0
|
pkg-resources==0.0.0
|
||||||
|
pyasn1==0.4.8
|
||||||
|
pyasn1-modules==0.2.7
|
||||||
|
PyInstaller==3.5
|
||||||
python-dateutil==2.8.1
|
python-dateutil==2.8.1
|
||||||
|
rsa==4.0
|
||||||
six==1.13.0
|
six==1.13.0
|
||||||
|
uritemplate==3.0.0
|
||||||
youtube-dl==2019.11.22
|
youtube-dl==2019.11.22
|
||||||
|
|
Loading…
Reference in New Issue