Oftentimes installing some package causes my whole anaconda distribution to crash. One instance where I faced such issue is when I do:
$ ipython --pylab
Then, I get
segmentation fault (core dumped)
This is usually because of some package mismatch/error. To resolve such situations the whole packages has to be re-installed in my anaconda distribution.
Fortunately, I usually take the list of packages that I install in my base conda environment using:
$ conda list --export > conda_packages.txt
So, how can I re-installed all packages at once using this conda_packages.txt file? So that I don't have to manually install each package from this file.
Is there a short command line option for achieving this in *nix, particularly in Ubuntu?