Usage¶
Installation¶
Follow these instructions to clone the EUVpy github repo setup a new Python virtual environment with the required dependencies.
Clone the repo into the directory of your choosing
$ cd ~/code
$ git clone https://github.com/DanBrandt/EUVpy.git
Ensure Fortran is installed and compile the codes needed to run the HEUVAC model.
$ sudo apt-get install gfortran
$ git submodule update --init --recursive --remote
$ ./install_heuvac.sh
Setup a Python virtual environment to run the code.
$ python3 -m venv ~/python_venvs/euv_venv
Activate virtual environment and install Python dependencies
$ source ~/python_venvs/euv_venv/bin/activate
(euv_venv) $ cd EUVpy
(euv_venv) $ pip install -r requirements.txt
Install EUVpy
(euv_venv) $ pip install EUVpy