Getting Started
Program Installation
Installation on PyCharm
Install PyCharm
Create a new project with the “Get from Version Control” option: enter the GitHub URL of the project (https://gitlab.osureunion.fr/payen/dial-lidar-ozone-retrieval-for-actris.git)
Install Git on PyCharm if necessary
Clone the program
Install the necessary packages (either through the graphical interface or by typing the command pip install -r requierement.txt )
Set the main folder as the main source. To do this, right-click on the folder ” dial-lidar-ozone-retrieval-for-actris”, go to “Mark Directory as”, then “Source Root”
Installation on Linux (without IDE)
Installation performed on Ubuntu 22.
Install Python 3.10 and its dependencies:
sudo apt install python3.10
Install pip: sudo apt install pip
Install venv: sudo apt install python3.10-venv
- Download the DIAL software
Install git: sudo apt install git
Clone the git 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 the virtual environment: source venv/bin/activate
Install the necessary packages: pip install -r requirements.txt
Set the main folder as the main source. To do this, type: export PYTHONPATH=$PYTHONPATH:path_of_the_project
In the case of installation on a server where you are only a user, you can use the following command to install packages: python -m pip install –user <package_name>.