Installation of Python - nikchopda/CanteenAutomation GitHub Wiki
For Windows users:
You can download required .exe file from this link and then execute downloaded file for installation.
For MAC OS users:
For Mac OS X 10.6 and later they can download required installer from this link and install that package.
For UNIX / Linux users:
For users who are using newer version of Linux / UNIX they can use following command:
$ sudo apt-get update
$ sudo apt-get install python3.6
If anyone who are not able to install by above command, they can use below command:
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository ppa: deadsnakes/ppa
$ sudo apt-get update
$ sudo apt-get install python3.6
Installation of Pip
Pip is a package manage for Python. It makes installing and uninstalling Python packages (such as Django) very easy. To install a pip use following command.
$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py $ python get-pip.py