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.
我对这两个库感到困惑。pipenv在同一个项目中同时拥有and是否有意义setuptools?我正在编写一个cliclick并使用setuptools简化生活。还可以简单地管理依赖关系pipenv。
pipenv
setuptools
click
pipenvsetuptools可以从样式setup.py文件中导入依赖。它在调用时这样做:pipenv install -e .
setup.py
pipenv install -e .
在Pipfile这看起来像:
Pipfile
[packages] "YourPackageName" = {path = ".", editable = true}