Skip to content

em-dat/python_tutorials

Repository files navigation

EM-DAT Python Tutorials

Note: The Tutorials are also available on the EM-DAT Documentation Website

Setting up

Windows (using conda in Anaconda Powershell prompt):

cd <project directory>

# installing environment with conda
conda env create --name emdat -f environment.yml
conda activate emdat
# emdat env activated

# starting notebook server
jupyter notebook

# to leave emdat env
conda deactivate

# delete environment
conda env remove --name emdat

MacOS X and Linux (implying python=python3):

python -m venv myenv
source myenv/bin/activate
# myenv activated

pip install --upgrade pip
pip install -r requirements.txt
jupyter notebook

# to leave myenv
deactivate

# to delete local environment
rm -rf myenv

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published