Python Setup on Linux: Python Complete Course — Part 5
Before we start let me tell you that:
- This article is a part of the Python Complete Beginner to Expert Course which you can find it here.
- This article is also available as a YouTube video here.
Summary
This article provides a comprehensive guide on setting up Python and the PyCharm IDE on a Linux system.
Abstract
The article "Python Setup on Linux: Python Complete Course — Part 5" serves as a step-by-step tutorial for Linux users to install Python 3.6 and configure the PyCharm Integrated Development Environment (IDE). It begins by instructing users to install Python via the terminal using sudo apt-get install python3.6 and verifying the installation by running Python3.6. The second part of the guide focuses on downloading and setting up the PyCharm IDE from the official JetBrains website, including extracting the tar.gz file, running the PyCharm.sh script, accepting the privacy policy, customizing the UI theme, and creating a launcher script. The article emphasizes the importance of having Python and a code editor to facilitate learning Python programming. It also encourages readers to subscribe for future posts and consider Medium membership for unlimited access to stories and support for writers.
Opinions
Before we start let me tell you that:
To start learning Python, you should get Python installed on your machine. Also, you need an editor to write and run your code.
If you are a Linux user, this article is for you. The following articles are for Windows and macOS users.
This article will cover the following outlines:
To get Python on your Linux, follow these steps:
sudo apt-get install python3.6Click Enter and make sure to type 3. Otherwise, Python 2.7 is going to be installed.
2. After that, you have to enter the password of your current user.
3. Once it is done, just type:
Python3.6then Enter.
4. If you find Python 3.6, that means you are ready now to use Python. Refer Figure1.

5. Finally, exit out of the Python shell by running Ctrl-z then enter.
Let’s move on and install PyCharm IDE.
Simply, follow the steps:

3. Once the tar.gz file has been downloaded on your computer, extract the downloaded file. Refer to Figure 3.

4. Once it’s extracted, you will find multiple folders and files. There is a file, inside the bin folder, its name PyCharm.sh. Refer to Figure 4.

5. Launch the pycharm.sh file script, which is located inside the bin folder. To do that open your terminal and navigate to the script file location.
cd Downloads/pycharm-community-2020.1.2./pycharm.shthen press enter. Refer to Figure 5.

6. Accept the privacy policy and click continue. Refer to Figure 6.

7. It is up to you to share some data from your environment or don’t share. Refer to Figure 7.

8. Now we can start customizing our PyCharm environment. Select your preferred UI theme, then click Next. Refer to Figure 8.

9. Check the box (create a script….), click next. Refer to Figure 9.

10. You can download and install any of the PyCharm plugins or skip that, click Start using PyCharm. Refer to Figure 10.

11. The installer will ask you to enter your user password. Enter the password, and then click OK. A welcome window will appear. Here, you can start and create your first project. Refer to Figure 11.

Congratulations! You can start coding on your computer…

In this article we have talked about:
P.S.: A million thanks for your time reading my story. Before you leave let me mention quickly two points:
To get back to the previous article, you can use the following link:
Part 4:Python Setup on Windows
To move on to the next article, you can use the following link: