I usually end up with a bunch of out-of-date packages in my conda environment because some package I installed at one time has a pinned dependency (e.g. scipy == 0.15.0
) and it prevents other packages (e.g. jupyter) from updating. How can I ignore the pins and force update all packages?
conda update --all --no-pin --no-channel-priority
This ignores all pinned packages, channel priority, and updates everything. Beware that this might break compatibility for some packages that really need a specific version of a package.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With