Step 1. Creating and Running Your First Python Project
Step 1. Creating and Running Your First Python Project Before you start Make sure that the following prerequisites are met: You are working with PyCharm CE or Professional . You have installed Python itself. If you’re using macOS or Linux, your computer already has Python installed. You can get Python from python.org . Choosing interpreter Choosing which interpreter to use for a project is an important decision. Python is a script language, which means that your code is converted to machine code by a Python interpreter. You can have multiple versions of Python installed on your computer, and you need to choose the one you’d like for this project. See the Configuring Python Interpreter section for details. Note that you can always change your mind later and specify another interpreter for your project. Creating a virtual environment When you’re using external libraries (from PyPI or elsewhere), you need to manage the versions of these...
Comments
Post a Comment