noob question: how to run your first bot? #1318
-
I am following the guide for "creating your first bot": Under "Coding the Basics", I appreciate the break down of what the code means, but I don't see where the code is actually run. When I try to run from my local command line, I get an error:
It is not clear to me how to actually get the bot running in discord. Would any kind souls mind providing guidance for me, please? UPDATE
The pycord guide should still have some mention about actually running the bot. The next section is all about hosting, which is an important discussion, but on this page for "creating your first bot", it is a bit disappointing when following all the instructions does not give you an online, functional bot. Here is the other article I used for reference: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
Make sure you have the correct version installed, the current stable version doesn't have |
Beta Was this translation helpful? Give feedback.
Make sure you have the correct version installed, the current stable version doesn't have
discord.Bot
. Try runningpip uninstall discord discord.py
andpip install py-cord~=2.0.0b7
, then try again.