Posts

Showing posts with the label install

Installation Of Python

Image
Windows  Visit https://www.python.org and download Python for Windows. Direct Link (Python v3.6.5) Installation process is simple like every other application. Guide for installing python is given below : 1. Open the installer 2. Check Add Python 3.6 to PATH and click on Customize Installation. 3. Click Next on Optional Features. 4. Change the install location to C:\Python rather than C:\Users\AppData\... and click on Next. (You can check Install or All Users if you want to.) 5. Wait for installation to complete successfully. After Python is installed, Open Start Menu and search for IDLE. Linux  Using the Package Manager 1.    If you are using Ubuntu Linux, at the command prompt type: $  sudo  apt-get install python3 2.    If you are using Fedora, at the command prompt type: $  sudo  yum install python3 3.    The most recent version of Python 3 wil...