Skip to main content

How to Install Python on Windows [Pycharm IDE]

 PyCharm is a cross-platform editor developed by JetBrains. Pycharm provides all the tools you need for productive Python development.

Below are the detailed steps for installing Python and PyCharm

How to Install Python IDE

Below is a step by step process on how to download and install Python on Windows:

Step 1) To download and install Python, visit the official website of Python https://www.python.org/downloads/ and choose your version. We have chosen Python version 3.6.3

How to Install Python on Windows


Step 2) Once the download is completed, run the .exe file to install Python. Now click on Install Now.

How to Install Python on Windows

Step 3) You can see Python installing at this point.

How to Install Python on Windows

Step 4) When it finishes, you can see a screen that says the Setup was successful. Now click on “Close”.

How to Install Python on Windows

How to Install Pycharm

Here is a step by step process on how to download and install Pycharm IDE on Windows:

Step 1) To download PyCharm visit the website https://www.jetbrains.com/pycharm/download/ and click the “DOWNLOAD” link under the Community Section.

How to Install Python on Windows with Pycharm IDE

Step 2) Once the download is complete, run the exe for install PyCharm. The setup wizard should have started. Click “Next”.

How to Install Python on Windows with Pycharm IDE

Step 3) On the next screen, Change the installation path if required. Click “Next”.

How to Install Python on Windows with Pycharm IDE

Step 4) On the next screen, you can create a desktop shortcut if you want and click on “Next”.

How to Install Python on Windows with Pycharm IDE

Step 5) Choose the start menu folder. Keep selected JetBrains and click on “Install”.

How to Install Python on Windows with Pycharm IDE

Step 6) Wait for the installation to finish.

How to Install Python on Windows with Pycharm IDE

Step 7) Once the installation is finished, you should receive a message screen that PyCharm is installed. If you want to go ahead and run it, click the “Run PyCharm Community Edition” box first and click “Finish”.

How to Install Python on Windows with Pycharm IDE

Step 8) After you click on “Finish,” the Following screen will appear.

How to Install Python on Windows with Pycharm IDE

Comments

Popular posts from this blog

What Makes a Blockchain Suitable for Business?

 Instead of having a blockchain that relies on the exchange of cryptocurrencies with anonymous users on a public network (as is the case with bitcoin ), a blockchain for business is a private, permissioned network with known identities and without the need for cryptocurrencies . To further understand how a blockchain for business works, and to appreciate its potential for revolutionizing business networks, you need to understand the four key concepts of blockchain for business These four concepts are explained in this section. Shared ledger they’ve been used in double-entry bookkeeping since the 13th century. What is new is the concept of a shared, distributed ledger — an immutable record of all transactions on the network, a record that all network participants can access. With a shared ledger, transactions are recorded only once, eliminating the duplication of effort that’s typical of traditional business networks Permissions Blockchains can be permissioned or permissionles...

What is Boxing Day

  Boxing Day is a holiday that is celebrated on December 26th in several countries, including Canada, the United Kingdom, Australia, and New Zealand. It is a public holiday that traditionally follows Christmas Day and is often a day off work for many people. The origins of the holiday are not definitively known, but it may have originated as a day for servants and tradespeople to receive gifts from their employers or as a way for the wealthy to give back to the less fortunate. In modern times, Boxing Day is often celebrated with activities such as shopping, sports events, and visiting with friends and family.

25 reasons why Python may be a good choice for your project

Python is a high-level, general-purpose programming language, which means it can be used to build almost any type of software, from desktop applications to web apps to scientific applications and more. Python is easy to learn and use, with a simple syntax and a large standard library that supports many common programming tasks. Python is a dynamically-typed language, which means you don't need to specify the type of a variable when you declare it. This makes it easy to get started with Python and can save time when writing code. Python has a large and active community of users and developers, which means there is a wealth of documentation, libraries, and tools available to help you get started with your project. Python has a large number of third-party libraries and frameworks available, which can make it easier to develop complex applications quickly. Python has a number of built-in data types, such as lists, dictionaries, and tuples, which can be used to store and manipulate data...