有没有办法强制安装一个 pip python 包,忽略它所有无法满足的依赖项?
(我不在乎这样做有多“错误”,我只需要这样做,除了任何逻辑和推理......)
pip 有一个--no-dependencies
开关。你应该使用它。
有关更多信息,请运行pip install -h
,您将在其中看到这一行:
--no-deps, --no-dependencies
Ignore package dependencies
当我尝试使用( ) 安装librosa
软件包时,出现了以下错误:pip
pip install librosa
ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.
我试图删除llvmlite
,但pip uninstall
无法删除它。因此,我通过此代码使用了ignore
of的功能:pip
pip install librosa --ignore-installed llvmlite
实际上,您可以使用此规则来忽略您不想考虑的包:
pip install {package you want to install} --ignore-installed {installed package you don't want to consider}
尝试以下操作:
pip install --no-deps <LIB_NAME>
或者
pip install --no-dependencies <LIB_NAME>
或者
pip install --no-deps -r requirements.txt
或者
pip install --no-dependencies -r requirements.txt