Is there any way to force install a pip python package ignoring all it's dependencies that cannot be satisfied?
(I don't care how "wrong" it is to do so, I just need to do it, any logic and reasoning aside...)
Is there any way to force install a pip python package ignoring all it's dependencies that cannot be satisfied?
(I don't care how "wrong" it is to do so, I just need to do it, any logic and reasoning aside...)
When I were trying install
librosa
package withpip
(pip install librosa
), this error were appeared:I tried to remove
llvmlite
, butpip uninstall
could not remove it. So, I used capability ofignore
ofpip
by this code:Indeed, you can use this rule for ignoring a package you don't want to consider:
pip has a
--no-dependencies
switch. You should use that.For more information, run
pip install -h
, where you'll see this line: