Changes between Version 5 and Version 6 of cypress/conda_virtual_environment
- Timestamp:
- 08/08/25 13:51:26 (42 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
cypress/conda_virtual_environment
v5 v6 55 55 ||{{{ conda install PACKAGE-NAME }}}|| Install some packages with the CONDA installation. || 56 56 ||{{{ conda deactivate }}}|| Deactivates the CONDA virtual environment. || 57 ||{{{ conda remove --name VIRT_ENV --all }}}|| Removing an environment. || 57 58 58 59 == Configuring the CONDA environment on Cypress == … … 113 114 114 115 116 == Managing CONDA environments == 117 * Export a Conda Environment 118 {{{ 119 source activate VIRT_ENV 120 conda env export > environment.yml 121 }}} 122 * Create environment using environment.yml file 123 {{{ 124 conda env create -f environment.yml 125 }}} 126 127 115 128 ---- 116 129 … … 157 170 * If you're unsure about the error message, please submit an [https://tulane.service-now.com/now/nav/ui/classic/params/target/com.glideapp.servicecatalog_category_view.do%3Fv%3D1%26sysparm_parent%3D8d648d93dbc44c10f460562bdc9619ad%26sysparm_catalog%3De0d08b13c3330100c8b837659bba8fb4%26sysparm_catalog_view%3Dcatalog_default%26sysparm_view%3Dcatalog_default HPC Consultation ticket] and include the command you ran along with all output messages, especially the error message. 158 171 172 ---- 159 173 160 174 175 '''To learn more, see [https://docs.conda.io/projects/conda/en/latest/index.html here].''' 176 177 178