如何在pipenv pip文件中包含外部依赖项?

时间:2019-08-04 23:54:09

标签: python imagemagick pipenv

我正在将MoviePy用于程序,并在需要安装ImageMagick的视频上写文本。 ImageMagick不是python依赖项,而是外部依赖项。如何在我的pipfile中包含ImageMagick下载?

pipfile看起来像这样:

[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]

[packages]
moviepy = "*"

[requires]
python_version = "3.7"

如果我手动安装ImageMagick,我的程序可以正常运行,但是我希望它们像正常的pipenv虚拟环境一样都是独立的。

0 个答案:

没有答案