是否可以从 Pipfile.lock 文件中删除依赖项并保留其他依赖项?
Is it possible to remove a dependency from the Pipfile.lock file and keep other dependencies?
我一直在尝试从构建中删除依赖项,即使在 Pipfile 中未指定它(即:depdendency = "*"
),它也会继续安装。我可以说 pipenv uninstall dependency
,但这将从 venv 而不是 Pipfile.lock 文件中卸载它。如果有人知道如何解决这个问题,我会洗耳恭听。
您可以手动删除 Pipfile 中的行,然后 运行
pipenv update
pipenv clean
更新将更新您的 Pipfile.lock
然后清理将删除已安装的依赖项
我一直在尝试从构建中删除依赖项,即使在 Pipfile 中未指定它(即:depdendency = "*"
),它也会继续安装。我可以说 pipenv uninstall dependency
,但这将从 venv 而不是 Pipfile.lock 文件中卸载它。如果有人知道如何解决这个问题,我会洗耳恭听。
您可以手动删除 Pipfile 中的行,然后 运行
pipenv update
pipenv clean
更新将更新您的 Pipfile.lock 然后清理将删除已安装的依赖项