1. Download PyCharm Community edition from https://www.jetbrains.com/pycharm/download
  2. Run the installation file.
  3. In the installation options, choose the following
  4. Setup your theme: Darcula or Light
  5. Open your project folder using Pycharm. For instance, if you are currently working on the Pong project, then Pycharm > Open > Find your Pong directory and open.
  6. Installing Python version 3.
    1. File > Settings > Project: <Project Name>: Project Interpreter
    2. On the right top corner, click the gear icon > Add
    3. Select Virtualenv Environment >  New Environment > Base Interpreter > Choose Python 3 interpreter you have in your machine.
      1. If you don’t have one, you need to download and install from https://indo.ayclogic.com/python-installation-guide/
      2. Check the “Make available to all projects” checkbox.
  7. Installing Pygame module
    1. File > Settings > Project: <Project Name>: Project Interpreter
    2. Click the + icon on the right.
    3. Type “pygame” in the search field.
    4. Select “pygame” from the list, click “Install Package”.
  8. Go to your main project file,forexample,pong.py
    1. Right click and choose Run pong