Changes between Version 5 and Version 6 of cypress/conda_virtual_environment


Ignore:
Timestamp:
08/08/25 13:51:26 (42 hours ago)
Author:
fuji
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • cypress/conda_virtual_environment

    v5 v6  
    5555||{{{ conda install PACKAGE-NAME  }}}||  Install some packages with the CONDA installation. ||
    5656||{{{ conda deactivate  }}}||  Deactivates the CONDA virtual environment. ||
     57||{{{ conda remove --name VIRT_ENV --all  }}}||  Removing an environment. ||
    5758
    5859== Configuring the CONDA environment on Cypress ==
     
    113114
    114115
     116== Managing CONDA environments ==
     117* Export a Conda Environment
     118{{{
     119source activate VIRT_ENV
     120conda env export > environment.yml
     121}}}
     122* Create environment using environment.yml file
     123{{{
     124conda env create -f environment.yml
     125}}}
     126
     127
    115128----
    116129
     
    157170* 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.
    158171
     172----
    159173
    160174
     175'''To learn more, see [https://docs.conda.io/projects/conda/en/latest/index.html here].'''
     176
     177
     178