我正在尝试使用诗歌包管理器安装此存储库。以下是使用 pip 完成的方法:
git clone --recursive https://github.com/parlance/ctcdecode.git
cd ctcdecode && pip install .
但是如果我尝试运行
poetry add ctcdecode
它因大回溯而失败(我认为超过 200 行)。所以我安装了它
poetry run git clone --recursive https://github.com/parlance/ctcdecode.git
poetry run pip install ./ctcdecode
但这种方式不适合与其他开发者共享。我可以用 pyproject.toml 以某种方式做到这一点吗?