From c64e5add4c25128e7f16c4e64311c32f338845d8 Mon Sep 17 00:00:00 2001 From: Nicolas Feller Date: Wed, 17 May 2017 10:05:35 -0400 Subject: [PATCH] Add sudo to install python packages with apt-get python packages want super user or root to access /var/lib/dpkg/lock --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3eb130..eff40ba 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ There are several great guides with a similar goal. Some are limited in scope, w ### Python Packages * Install some useful Python packages using apt-get. There are some version incompatibilities with using pip install and TensorFlow ( see https://github.com/tensorflow/tensorflow/issues/2034) - sudo apt-get update && apt-get install -y python-numpy python-scipy python-nose \ + sudo apt-get update && sudo apt-get install -y python-numpy python-scipy python-nose \ python-h5py python-skimage python-matplotlib \ python-pandas python-sklearn python-sympy sudo apt-get clean && sudo apt-get autoremove