If you want to install some new package in Python, pip is convenient.
pip install tweepy
If you do this, it will search for the package from PyPI and install it, but if you fork a package that has already stopped development and put it on GitHub, you may want to pull the package from a place other than PyPI. think.
As an example, from mktakuya / tweepy on my GitHub instead of the original tweepy / tweepy Let's assume you want to install the package.
pip install git+https://github.com/mktakuya/tweepy
You can go with this.
http://ではなくgit://やssh://を使う場合や、SubversionやMercurialなど他のVCSもサポートしているので、詳しくはドキュメント
pip install — pip 6.0.8 documentation
I think you should take a look at.
This is the post of the memorandum.
Recommended Posts