| | 1 | [[PageOutline]] |
| | 2 | = CONDA Virtual Environment = |
| | 3 | The virtual environment is an isolated execution environment that allows software applications to run independently of the host. |
| | 4 | |
| | 5 | [[Image(https://docs.google.com/drawings/d/e/2PACX-1vRT8y0469t50JiKqEbZYCRnDD2hSxdWGqBpWJmRoWRQlksC9-GaXAG0v8KjApAkdCWBVI4Icuv8jS4s/pub?w=960&h=200)]] |
| | 6 | |
| | 7 | == CONDA virtual environment and package manager == |
| | 8 | === CONDA distribution === |
| | 9 | * '''Anaconda''': Full-size CONDA and a lot of Python packages, Anaconda Inc. ('''Preinstalled on Cypress''') |
| | 10 | * '''Miniconda''': Minimum size CONDA and Python only, Anaconda Inc. |
| | 11 | * '''Miniforge''': Minimum size CONDA and Python only. Community support. |
| | 12 | |
| | 13 | ==== Anaconda ==== |
| | 14 | Several versions of Anaconda are installed on Cypress. |
| | 15 | |
| | 16 | {{{ |
| | 17 | $ module av anaconda |
| | 18 | |
| | 19 | ----------------------------------------------- /share/apps/modulefiles ------------------------------------------------ |
| | 20 | anaconda/2.1.0 anaconda3/2018.12 anaconda3/2020.07 anaconda3/5.1.0 |
| | 21 | anaconda/2.5.0 anaconda3/2019.03 anaconda3/4.0.0 |
| | 22 | |
| | 23 | ------------------------------------------- /share/apps/centos7/modulefiles -------------------------------------------- |
| | 24 | anaconda3/2023.07 |
| | 25 | }}} |
| | 26 | |
| | 27 | anaconda/2.*.* provides python2. anacoda3/* provides python3. Modules under /share/apps/centos7/modulefiles work on CentOS 7 nodes only. |
| | 28 | |