728x90
반응형
아래 내용은 포스팅 중 확인된 오류들에 대한 리스트들입니다.
discord.errors.LoginFailure: Improper token has been passed.
- Bot 로그인 실패.
=> 토큰 확인 필요
discord.ext.commands.errors.CommandRegistrationError: The command ping is already an existing command or alias.
- bot 실행시 중복되는 명령어가 확인될 경우 발생
=> 중복된 명령어가 존재하지 않는지 확인필요
Extension 'Cogs.***' raised an error: ModuleNotFoundError: No module named 'bs4'
- 소스코드 동작시 필요한 beautifulsoup4 library 가 설치되지 않은 상태
=> 콘솔을 통해 "pip install beautifulsoup4" 를 입력하여 라이브러리 설치
포스팅에 사용된 모든 소스코드는 아래 Github에서 확인하실 수 있습니다.
https://github.com/aochfl/ChoRi_TestBot
728x90
반응형
'정보 > Discord Bot' 카테고리의 다른 글
[discord.py 2.0] 07. 대화에 Embed 추가하기 (0) | 2022.09.07 |
---|---|
[discord.py 2.0] 06. 봇 명령어 추가하기 (0) | 2022.09.04 |
[discord.py 2.0] 05. 봇 기본설정하기 (0) | 2022.09.04 |
[discord.py 2.0] 04. discord.py 라이브러리 설치하기 (0) | 2022.09.03 |
[discord.py 2.0] 03. PyCharm 세팅하기 (6) | 2022.09.02 |