From 3d9cd0058fa4756df77659e253425d5913e6f0f5 Mon Sep 17 00:00:00 2001 From: Firstname Lastname Date: Wed, 18 Dec 2019 22:55:34 +0100 Subject: [PATCH] update install.sh --- install.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/install.sh b/install.sh index ae434e2..8903ce4 100644 --- a/install.sh +++ b/install.sh @@ -10,14 +10,20 @@ ## deactivate current venv #source ./venv/bin/deactivate -# Export virtual environment +# Clone from repo +git clone http://github.com/fabthegreat/ydl + +# Enter in the newly created dir +cd ydl + # Create new venv -#virtualenv --python=/usr/bin/python -# or -python3 -m venv venv # to be tested +virtualenv --python=/usr/bin/python3 venv #activate new venv -source ./venv/bin/activate # to be tested wit python3 -m venv +source venv/bin/activate # pip install pip install -r requirements.txt + +# Optional +sudo apt-get install ffmpeg xterm