-
Notifications
You must be signed in to change notification settings - Fork 0
Installation of Python
kavisha14 edited this page Nov 26, 2020
·
1 revision
You can download required .exe file from this link and then execute downloaded file for installation.
For Mac OS X 10.6 and later they can download required installer from this link and install that package.
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
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