Numerical experiments, Tips, Tricks and Gotchas
Conda is an open source package management system and environment management system for installing multiple versions of software packages and their dependencies and switching easily between them. It works on Linux, OS X and Windows, and was created for Python programs but can package and distribute any software [1].
Conda is included in all versions of Anaconda, Anaconda Server, and Miniconda, and is not available separately [2].
There is a comprehensive documentation on Conda [3, 4] . Below is a small collection of useful commands.
1 | $ conda info |
1 | $ conda -V |
1 | $ conda list |
1 | $ conda list pep8 |
1 | $ conda search |
1 | $ conda search scipy |
1 | $ conda install matplotlib=1.2 |
1 | $ conda update matplotlib |
1 | $ conda update conda |
1 2 | $ conda update conda $ conda update anaconda |
1 | $ conda remove scipy |
© Nikolai Shokhirev, 2012-2025
email: nikolai(dot)shokhirev(at)gmail(dot)com