Skip to content

Latest commit

 

History

History

eag_simulation

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

EAG Simulation

Dependencies

Software

  1. Anaconda
    How to install Anaconda
  2. Apt Install
$ sudo apt-get install libglib2.0-dev

Setup

  1. Go to the project root directory
  2. Type the following commands to activate environment.
$ conda env create --prefix ./env --file environment.yml
  1. Type the next commands.
$ conda activate path/to/conda/env

Dev Notes

Update Conda Environment

  1. Check if library exists in Anaconda Cloud. Just Google Search conda install [name/of/python/package]
  2. If present add the package name in dependency list of environment.yml. If not, add the package name in pip list of `environment.yml
  3. Run the following command to update the environment. PS. You do not need to be outside the environment (conda deactivate) to update.
$ conda env update --prefix ./env --file environment.yml  --prune