In case you want to return a recently installed package that has made several changes depending on it (for example, tenorflow), you can roll back to an earlier installation state using the following method:
conda list --revisions conda install --revision [revision number]
The first command displays previous versions of the installation (with dependencies), and the second returns to the revision number you specified.
Note that if you want to (re) install a later version, you may have to reinstall all intermediate versions in sequence. If you were on the 23rd revision, reinstalled revision 20 and want to return, you may have to start each of them:
conda install
anon01 Feb 20 '16 at 17:43 2016-02-20 17:43
source share