Link Search Menu Expand Document

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".

Pycharm1

Step 2. As in the image below, Set the project name and click the items in the picture below.

Pycharm2

Step 3. As in the image below, Click "File -> Setting".

Pycharm3

Step 4. In the Settings Window, click "Python Interpreter" under Project: "Project Name" and select "Python Interpreter".

Pycharm4

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.

Pycharm5

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.

Pycharm6

Step 7. Complete the installation of "asyncio" through the above method(Step 6).

Step 8. Delete all contents of Main.py.