Skip to the content.

! Requires stockage to install Miniconda (or Anaconda) and the necessary packages !

  1. Download Miniconda (or Anaconda)

    I recommend to use the conda package manager to install all the requirements. You can install Miniconda or install the (larger) Anaconda distribution.

    conda is a powerful package manager and environment manager that you use with command line commands at the Anaconda Prompt for Windows, or in a terminal window for macOS or Linux.

    Getting started with conda

    You can also check the conda cheat sheet to get an overview of all commands.

  2. Download the YAML file env_lbrat2104.yml

  3. Open Anaconda Prompt (Windows) or Terminal (MacOS)

  4. Create a conda envrionment from YAML file
     conda env create --file env_lbrat2104.yml
    

    The following python packages/libraries are now installed :

  5. Activate LBRAT2104’s environment
     conda activate lbrat2104
    
  6. Download other libaries with pip

    Some libraries can not be installed with conda and must be installed through pip

    For instance, to install sentinelsat you must launch this command :

     pip install sentinelsat
    
  7. Test the environment (optional)

    To make sure everything was installed correctly you can run the small python script check_environment.py

     python3 check_environment.py
    
  8. Launch Jupyter-Lab
     jupyter lab