How to install Python and Pycharm
Hi, welcome to my first medium, I for this early medium want to share how to install python and pycharm,
Python is an interpretive programming language that can be used across multiple platforms with a design philosophy that focuses on code readability and is one of the popular languages related to Data Science, Machine Learning, and the Internet of Things (IoT). Python’s interpretive advantages are also widely used for prototyping, scripting in infrastructure management, to large-scale website creation. (https://www.dicoding.com/academies/86)
PyCharm is an integrated development environment (IDE) used in computer programming, specifically for the Python language. This app was developed by a Czech company called JetBrains. The application provides several conveniences for analyzing code, a graphical debugger, an integrated unit tester, and integration with version control systems (VCSes). In addition, PyCharm can also support web development using Django, Data Science using Anaconda. (https://id.wikipedia.org/wiki/PyCharm)
Before we want to make a python program, we must first install the tool used for coding,
- Here are the steps for installing Python and Pycharm
https://www.jetbrains.com/pycharm/download/other.html
After the download is complete, please install it with the following steps
After installing pycharm, download python here https://www.python.org/downloads/source/
then install by following these steps
Next open pycharm for initial settings on pycharm
to use pycharm we should enable vcs for example we connect to github
first create a repository on github, then we connect it to the HTTPS clone, then we copy the HTTPS
then we paste it into the URL
if everything has been cloned, then we will set the interpreter in the project, how do we select file>settings>project setting>python interpreter
then we click the gear in the upper right corner, select add
setting the virtual environment we want to use
Setting is complete, then we can use pycharm which has been integrated with github
thank you