How Did I Fix That?

A log of solutions to problems I've encountered. No warranties.

Upgarding Python packages with Anaconda

12 March 2019

To update all installed packages:

conda update conda
conda update --all

To upgrade to a new distribution:

conda update conda
conda update anaconda

This is a stable release, but usually not what we're looking for.

Tags: Python, Anaconda