Difference between pip install options “ignore-installed” and “force-reinstall”
–force-reinstall Before installing a package, will uninstall it first if already installed. Pretty much the same as running pip uninstall -y dep && pip install dep for package and its every dependency. –ignore-installed Ignores whether the package and its deps are already installed, overwriting installed files. This means that you can have a situation where … Read more