! Requires stockage to install Miniconda (or Anaconda) and the necessary packages !
-
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.You can also check the conda cheat sheet to get an overview of all commands.
-
Download the YAML file env_lbrat2104.yml
-
Open Anaconda Prompt (Windows) or Terminal (MacOS)
- Create a conda envrionment from YAML file
conda env create --file env_lbrat2104.yml
The following python packages/libraries are now installed :
- Activate LBRAT2104’s environment
conda activate lbrat2104
-
Download other libaries with
pip
Some libraries can not be installed with
conda
and must be installed throughpip
For instance, to install sentinelsat you must launch this command :
pip install sentinelsat
-
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
- Launch Jupyter-Lab
jupyter lab