You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conda is an open source package management system and environment management system that runs on Windows, macOS and Linux.
Conda quickly installs, runs and updates packages and their dependencies.
You can set up totally separate environments to run different versions of software, while continuing to run your usual
commands in your normal environment.
Miniconda is “mini” because by default, it does not include as many Python packages as Anaconda does. A minimum number of default packages uses less space on hard drives.
Miniconda in not installed by default on Linux.
Conda basics
To create/remove a new environment and install/remove software into it:
If you are absolutely sure a ready-made executable does not exist, you need to compile the software yourself.
$ wget https://ftp.gnu.org/gnu/hello/hello-2.10.tar.gz
$ tar xzf hello-2.10.tar.gz
$ cd hello-2.10
$ ./configure --prefix=${HOME}/hello
$ make
$ make install
$ make clean
Development libraries required for compiling might be missing from default install. If that's the case those need to be installed first.