Skip to main content

How to Install PyCharm? (Windows, Mac, Ubuntu)

 

A little introduction

PyCharm is one of the widely used IDE for python programming and used by many programmers these days. It is available in three editions: Professional, Community and Educational (Edu).
We will prefer Edu edition as it is an open source and free to use. Also, it fits our purpose of learning python as a beginner.
If you have already installed pycharm or some other compiler you can skip this and read the tutotrial here>> Let's Get Started with Python

Install PyCharm

You can go to the official page and follow the guide to installation, to go to the official page click here or stick with me and follow the steps below.
This is the direct link to install PyCharm Edu>> click here

Already Installed PyCharm Community or Professional?

Then you just need to install EduTools Plugin. To install the plugin follow these simple steps:
1.       Go to Files>>Settings... or Press Ctrl+Alt+S to open Setting/Preferences dialogue.
2.       Then go to Plugins.
3.       In the search bar above type EduTools and hit enter.
4.       Press Install.
5.       After the installation is complete, click Restart PyCharm.


If you want to update the EduTools Plugin, follow these simple steps:
1.       Go to Files>>Settings... or Press Ctrl+Alt+S to open Setting/Preferences dialogue.
2.       Then go to Plugins.
3.       In the search bar above type EduTools and hit enter.
4.       If the plugin is ready to be updated, you will find a highlighted blue update button below it.
5.       Press Update.
6.       After the update is complete, click Restart PyCharm.

Ubuntu?
Requirements: Ubuntu 16.04 or later
All the Ubuntu users can install PyCharm Edu from the following command line:

 

       
sudo snap install pycharm-educational-classic  


Installation
After the installation is complete you may click the Finish button.

PyCharm enables you to share your settings with your colleagues but for now you can select, Do not import settings.




PyCharm enables you to share your settings with your colleagues but for now you can select, Do not import settings.


Make sure you check the checkbox and continue.




You can select the learner mode and get started.


You must select Create new file, this will create a folder for you and in it you can create new python file by clicking, new from File. Here I’ve created a folder/directory and file with name tutorial00, you can give it any name.
You can also create C file by opting for create new C file.

Open up the terminal tab below and specify its path. Look up for the path of your saved directory and make sure the same path is specified in the terminal tab below.
Type cd\ to change directory and again specify your path using cd, make sure you type the correct path.




Python Interpreter
You also need to specify the python interpreter for your program/project. At the top of your blank file (ignore the code written below) it must be written that No Python interpreter configured for the project and on the right side you have the option to Configure Python Interpreter.
Once you click on Configure Python Interpreter you have the option to select Python Interpreter. According to the convenience of the tutorial you must select Python3.


Then you click on the drop down menu and select the interpreter. If you see no python3 interpreter then you must download it.
To know how to download you must follow the instructions below
Install Python 3.7.2 for windows click here
Install Python3.7 on Linux
The following steps apply to Ubuntu 18.04 and Ubuntu 16.04
Open the command prompt and run

$ sudo apt update
$ sudo apt install software-properties-common
$ sudo add-apt-repository ppa:deadsnakes/ppa 
Then you must enter to continue
      
Press [ENTER] to continue or Ctrl-c to cancel adding it.
      
Now you can install with the following command
$ sudo apt install python3.7
Once the installation is complete you can verify it with the following command  
$ python3.7 –version
Install Python 3.7 on Mac
You can go the official site download click here
Or you can install it with Homebrew from your terminal
To open your terminal, go to the Applications folder on OS X
Applications>>Utilities>>Terminal
Once your terminal tab is open then you can execute the following command

$ xcode-select –install
/usr/bin/ruby -e "$(curl –fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

$ brew doctor

Then the following message will appear
Your system is ready to brew.

Now you can install Python3
$ brew install python3
$ python3 --version 
The message will appear with the version of python downloaded.
Now you can go back and change Python Interpreter.

You may follow the next tutorial to begin with python programming>>  Let's Get Started with Python

Comments

  1. Thanks for watching this video, if you want to download the latest version of this software.
    SO the link is given below!!!
    piratelink.org
    PyCharm Crack

    ReplyDelete
  2. Congratulations on all of your efforts; I admire them and appreciate you sharing them with us.
    PyCharm Crack
    AOMEI Partition Assistant Crack

    ReplyDelete
  3. Thank you so much for what you've done. I appreciate it, and I appreciate you sharing it with me.
    PyCharm Crack

    ReplyDelete
  4. After looking through a few blog articles on your website,
    we sincerely appreciate the way you blogged.
    We've added it to our list of bookmarked web pages and will be checking back in the near
    future. Please also visit my website and tell us what you think.
    Great work with hard work you have done I appreciate your work thanks for sharing it.
    ecrack.org Full Version Softwares Free Download
    Pycharm Professional Crack

    ReplyDelete

Post a Comment

Popular posts from this blog

101/Introduction to C language - part 1

We are assuming you have C compiler already Installed in your systems, if not you can read  How to install C compilers ? (Ubuntu, Mac, Windows) What is C ? C is high-level compared to assembly but low leveled compared to JavaScript. But in general terms C is considered as high level language . So when we talk about c language, we usually hear the following terms Header file Data types Variables Main function Operators Hello World Program ( gateway to programming world  😉 ) Addition/Subtraction program for the basic understanding of Operators What is Header File ? As a beginner I never got a satisfactory answer for the same. In a nutshell, we can say “ It's just like a brain to a body ” ,  It enables us to use the functionality which is pre-implemented by the Developers, just like the brain adds the functionality to other body parts. Header file has a file extension of '.h'  for example “stdio.h” also called standard input-ou

Let’s Get Started with Python

NOTE: The tutorial is aimed at people who have no prior programming experience. If you have previous experience with other programming language (C) and just want to compare the syntax you can jump to this page (link will be updated soon). If you have no compilers installed then you may follow the installation guide here>> How to Install PyCharm? Tutorial00 Statements Let’s start by using  print() , it simply prints whatever you type in double or single codes. As per the tradition let’s print Hello World. In the python file you created type print(“Hello World”) or print(‘Hello World’) as shown below