From c6cdbacb2dac320e8ae18a20a5e3dbbff289ec4e Mon Sep 17 00:00:00 2001 From: Baljit Singh Date: Sun, 2 Jul 2017 19:11:28 +0300 Subject: [PATCH] requirements bug remove --- README.md | 10 +++++++++- libraries_setup.sh | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4787fed..6f695f3 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,10 @@ The following pre-requisites need to be satisified for the project to run: * Pillow 4.1.1 -For Ubuntu, install freetype before installing the required modules: +For Ubuntu, the below files are required before installing the required modules: ``` sudo apt-get install libfreetype6-dev libxft-dev +sudo apt-get install python-tk ``` Following commands can be used to install pre-reqs using `pip`: ``` @@ -83,6 +84,13 @@ The following pre-requisites need to be satisified for the machine learning proj * FreeType ## Instructions to run + +For Ubuntu, the below files are required before installing the required modules: +``` +sudo apt-get install libfreetype6-dev libxft-dev +sudo apt-get install python-tk +``` + To setup TensorBox and evaluate the model, follow instructions below: diff --git a/libraries_setup.sh b/libraries_setup.sh index 337dd88..49ca744 100755 --- a/libraries_setup.sh +++ b/libraries_setup.sh @@ -9,6 +9,7 @@ osType=$(uname) } ;; "Linux") { + sudo apt-get install pkg-config echo "It's all good" exit } ;;