Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- github
- 편스토랑 우승상품
- 캐치카페
- 백준
- 프로그래머스 파이썬
- 코로나19
- 프로그래머스
- SW Expert Academy
- PYTHON
- Docker
- AI 경진대회
- programmers
- gs25
- 우분투
- ChatGPT
- 편스토랑
- 더현대서울 맛집
- Git
- 데이콘
- leetcode
- ubuntu
- dacon
- 자연어처리
- Real or Not? NLP with Disaster Tweets
- hackerrank
- Kaggle
- 금융문자분석경진대회
- 맥북
- 파이썬
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[Python] telegram.Bot 사용 시 AttributeError: module 'telegram' has no attribute 'Bot' 발생 오류 해결 방법 본문
Programming/Python
[Python] telegram.Bot 사용 시 AttributeError: module 'telegram' has no attribute 'Bot' 발생 오류 해결 방법
솜씨좋은장씨 2021. 12. 1. 11:54728x90
반응형
스파이더맨 노웨이홈의 개봉이 14일 앞으로 다가온 오늘!
오랜만에 텔레그램으로 예매 알리미를 만들어볼까하여
import telegram
bot = telegram.Bot(token="토큰")
위와 같이 코드를 작성하고 실행하려고하니
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-53-f3209184a123> in <module>
2 # from telegram import Bot
3
----> 4 bot = telegram.Bot(token="토큰")
5
6
AttributeError: module 'telegram' has no attribute 'Bot'
위와 같이 telegram 모듈이 Bot을 가지고있지 않다는 오류가 발생했습니다.
👨🏻💻 해결방법
$ pip uninstall python-telegram-bot telegram -y
위의 명령어로 한번 모든 telegram 관련 라이브러리를 삭제했다가
$ pip install python-telegram-bot
다시 설치를 하면 해결됩니다.
읽어주셔서 감사합니다.
'Programming > Python' 카테고리의 다른 글
[Python] https 로 시작하는 페이지 requests 요청 시 발생하는 SSLCertVerificationError 해결 방법 (0) | 2021.12.06 |
---|---|
[Python] 내가 원하는 순서대로 리스트를 정렬하는 다양한 방법! (0) | 2021.12.06 |
[Python] class 객체의 변수, 메소드 확인하는 방법! (0) | 2021.11.22 |
[Python] AttributeError: 'NoneType' object has no attribute 'encoding' using pymysql 해결방법 (0) | 2021.10.26 |
[FastAPI] Base64 형식으로 파일을 요청 받고 활용하는 방법 (Python) (0) | 2021.09.27 |
Comments