Installation#
This section explains how to install and run the LIDAR Ozone ACTRIS project for the first time.
Installation on PyCharm#
Install PyCharm
Create a new project using Get from Version Control and enter the GitLab URL of the project: https://gitlab.osureunion.fr/payen/dial-lidar-ozone-retrieval-for-actris.git
Install Git on PyCharm if necessary.
Clone the repository.
Install the required packages, either via the GUI or with:
pip install -r requirements.txt
Set the main folder as the source root: right-click the folder
dial-lidar-ozone-retrieval-for-actris→ Mark Directory as → Source Root
Installation on Linux (without IDE)#
Installation tested on Ubuntu 22.
Install Python 3.10 and its dependencies:
Install Python:
sudo apt install python3.10
Install pip:
sudo apt install python3-pip
Install venv:
sudo apt install python3.10-venv
Download the DIAL software:
Install git:
sudo apt install git
Clone the repository:
git clone https://gitlab.osureunion.fr/payen/dial-lidar-ozone-retrieval-for-actris.git
Use a virtual environment:
Create the virtual environment:
python3.10 -m venv /path/to/new/virtual/environment
Activate it:
source venv/bin/activate
Install dependencies:
pip install -r requirements.txt
Add the main folder to the Python path:
export PYTHONPATH=$PYTHONPATH:/path/to/dial-lidar-ozone-retrieval-for-actris
Note
If you are installing on a server without admin privileges, you can install packages locally using:
python -m pip install --user <package_name>