# Conda initialization by JYP # # Use this for working with conda and CDAT # # Execute this file in a BASH 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.sh, IF you # have installed miniconda3 (or anaconda3) . /home/jypeter/miniconda3_21-02/etc/profile.d/conda.sh # Use the alias below to easily determine where your python # interpreter is located alias wp="which python" # Where are ALL the python interpreters in the search path alias wpa="which -a python" # The end