# Conda initialization by JYP # # Use this for working with conda and CDAT # # Execute this file in a TCSH shell with # source path/this_file # Then get the list of available python distributions with # conda env list # Then activate a specific distribution with # conda activate env_name # # More details in: # https://wiki.lsce.ipsl.fr/pmip3/doku.php/other:uvcdat:cdat_conda:miniconda3_install # https://wiki.lsce.ipsl.fr/pmip3/doku.php/other:python:starting#conda-based_versions_of_uv-cdat # https://wiki.lsce.ipsl.fr/pmip3/doku.php/other:uvcdat:conda_notes # # Jean-Yves Peterschmitt - LSCE - 03/2021 # Update the path below with the actual location of conda.csh, IF you # have installed miniconda3 (or anaconda3) source /home/jypeter/miniconda3_21-02/etc/profile.d/conda.csh # Use the alias below to easily determine where your python # interpreter is located alias wp "which python" # The end