怎么使用 pip 安装 pyproject.toml 中的包?
看到一个项目 https://github.com/zauberzeug/nicegui ,用的项目管理不是传统的 requirements.txt,而是一个 pyproject.toml
我要怎么安装 pyproject.toml 中的包?
https://github.com/zauberzeug/nicegui/blob/main/pyproject.toml
可以使用 pip 吗?
问了 chatGPT,说是要通过 poetry 安装,但是我更喜欢用 pipenv ,可以不用 poetry 吗?
回答:
pip install -e .
回答:
担心执行 poetry install --all-extras 会 poetry 会先创建虚拟环境,再安装依赖包
但是实际上不是,所以这个问题的解决方案就是:poetry install --all-extras
不要抗拒 poetry,因为它和 pipenv 不一样,pipenv install 会先创建虚拟化环境,在 install 包,但是 poetry 不会
回答:
估计不行,只能用 poetry
来安装。或者你用poetry给他输出为requirements.txt
,再用你的方式,但好像也没那个必要。我现在就是用poetry
作为项目的包管理工具,反正挺好用的。
以上是 怎么使用 pip 安装 pyproject.toml 中的包? 的全部内容, 来源链接: utcz.com/p/939112.html