diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-25 07:51:17 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-25 07:51:17 +0100 |
commit | eea3391f37c1c49d6721f360cde34dde0d6ae6ce (patch) | |
tree | 5f394dd63387b607fc218e87a17b8e74c9f93b15 | |
parent | Improved installation script (tested with PostgreSQL, problem with SQLite bec... (diff) | |
download | newspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.tar.gz newspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.tar.bz2 newspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.zip |
Added '-y' option to when installing dependencies with apt.
-rwxr-xr-x | install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,8 +5,8 @@ # for Python 3. # -sudo apt-get install python libpq-dev python-dev python-pip build-essential git -sudo apt-get install libxml2-dev libxslt1-dev # for lxml +sudo apt-get install -y python libpq-dev python-dev python-pip build-essential git +sudo apt-get install -y libxml2-dev libxslt1-dev # for lxml sed -i '/psycopg2/d' requirements.txt sudo pip install --upgrade -r requirements.txt |