Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在中添加库requirements.txt?例如jenks库可以像这样安装:
requirements.txt
jenks
pip install -e "git+https://github.com/perrygeo/jenks.git#egg=jenks"
但是,如果我只是写jenks进去requirements.txt,那就pip找不到了
pip
您可以requirements.txt像这样将其添加到您的:
-e git://github.com/perrygeo/jenks.git#egg=jenks
有关详细信息,请参阅Git 支持。