Thursday, December 7, 2017

Installing PyCharm

Although we have started using IDLE for python.now we will use PyCharm integrated Developer environment.this is excellent IDE and this is built by the same forks who brought  IntelliJ ide.They have a free community edition for PyCharm available for download from there Website.
If you don't want to use PyCharm don't use it. any text editor will work fine including notepad.for the purpose I will certainly give all tutorials using PyCharm.

To download it simply go to"www.jetbrains.com/pycharm/" then click on the "Download Now" button and then "Download" free community edition of PyCharm.once you download and install PyCharm.click "Create New Project" and make sure that "Pure Python" is selected.
also you can see Location and Interpreter path.if you click on Interpreter you will see all the installed pyhton interpreter on your computer. And also make sure you select Python version 3 and above.in Location path basically it's your workspace.
now click on create.then you will be able to see Pycharm IDE with some files in it.And you can also add Python files by right click on your project and select pyhton file,name it helloworld.py  and click ok and write below code.

print("Hello World") and then right click on the HelloWorld.py you will see "Run helloworld'". in consloe you will able to see Hello World .

Now your PyCharm IDE is ready to use.

No comments: