@@ -58,6 +58,41 @@ There are three basic categories of incomplete functionality:
5858## Running Grumpy Programs
5959
6060### Pre-requisites
61+ Python 2.7
62+ pip
63+ setuptools
64+ Go 1.10+
65+
66+ ### Mac Python 2.7 installation instructions
67+ OSX users can go to https://www.python.org/downloads/release/python-2713/
68+
69+ Once you've succesfull installed Python2.7 please ensure that pip is also
70+ installed on your system by running the command "python -m pip --version".
71+ If pip is not installed please follow the instructions found here
72+ https://pip.pypa.io/en/stable/installing/#
73+
74+ Once pip has succesfully been installed please run the following command
75+ "python -m pip install --upgrade pip setuptools".
76+
77+ ### Linux Python 2.7 installation instructions
78+ Run the command "python --version" if this command returns Python2.7
79+ then it's already installed. If it returns python3+ then run the command
80+ "sudo apt install python2.7" Note: Replace "apt" with your package tool.
81+
82+ Next ensure that pip is installed by running "python -m pip --version"
83+ or, "python2 -m pip version". If it returns pip [ version number] then
84+ pip is already installed. If it doesn't run the command "sudo apt install python-pip".
85+ Note: Again, replace apt with the appropriate package tool.
86+
87+ Once pip has been succesfully installed run the command "python -m pip install --upgrade pip setuptools"
88+ ### GO Lang installation instructions
89+ Note: Please download Go 1.10+
90+ Go lang can be downloaded here: https://golang.org/dl/
91+
92+ Please see the official go installation documentation to install Go: https://golang.org/doc/install
93+
94+ If you wish to build Go from source see the documentation here: https://golang.org/doc/install/source
95+
6196
6297The commands ahead assumes that you have Golang installed and a recent
6398version of Python 2, ` setuptools ` and ` pip ` .
0 commit comments