설치하기

PyPI로부터 최신 버전을 설치하는 가장 쉬운 방법은, pip 를 이용하는 것입니다:

pip install tweepy

하위 패키지인 tweepy.asynchronous 를 사용하려면, 아래와 같이 async 도 설치되게 해야 합니다:

pip install tweepy[async]

Git을 사용해 GitHub 저장소를 복제(Clone)해와, 최신 개발 버전을 설치할 수도 있습니다.

git clone https://github.com/tweepy/tweepy.git
cd tweepy
pip install .

위와 같은 방법 대신, 아래와 같이 GitHub 저장소에서 직접 설치할 수도 있습니다:

pip install git+https://github.com/tweepy/tweepy.git