Introduction
Here we will get the project ready for the coding portion required to create your own bot.
Steps
Step 1. Run Pycharm and click "Create New Project".
Step 2. As in the image below, Set the project name and click the items in the picture below.
Step 3. As in the image below, Click "File -> Setting".
Step 4. In the Settings Window, click "Python Interpreter" under Project: "Project Name" and select "Python Interpreter".
Step 5. After selecting Interpreter, let's add Modules to make a Discord bot. Click (+) in the middle of the Settings screen as shown in the below picture.
Step 6. Upon clicking the (+) button. The available Package appears. The modules we need now are "discord" and "asyncio". Search for "discord" using the search bar at the top. After selecting "discord" package, click "INSTALL PACKAGE" at the bottom to complete the installation.
Step 7. Complete the installation of "asyncio" through the above method(Step 6).
Step 8. Delete all contents of Main.py.