From d781fcd06336b8518156f62544df62f6a49c67d5 Mon Sep 17 00:00:00 2001 From: Maximilian Schmidt <max.schmidt@fz-juelich.de> Date: Tue, 5 Jun 2018 13:47:23 +0900 Subject: [PATCH] Remove conda environements file and add requirements file for pip, adapt README --- README.md | 4 ++-- environment.yaml | 11 ----------- requirements.txt | 7 +++++++ 3 files changed, 9 insertions(+), 13 deletions(-) delete mode 100644 environment.yaml create mode 100644 requirements.txt diff --git a/README.md b/README.md index 27f6b39..2b7747c 100644 --- a/README.md +++ b/README.md @@ -179,9 +179,9 @@ pandas, numpy, nested_dict, matplotlib (2.1.2), scipy, NEST 2.14.0 Optional: seaborn, Sumatra -To install the required packages in a conda environment, execute: +To install the required packages with pip, execute: -`conda env create -f environment.yaml` +`pip install -r requirements.txt` Note that NEST needs to be installed separately, see <http://www.nest-simulator.org/installation/>. diff --git a/environment.yaml b/environment.yaml deleted file mode 100644 index 43e568b..0000000 --- a/environment.yaml +++ /dev/null @@ -1,11 +0,0 @@ -name: multiarea_model -dependencies: - - future - - numpy - - matplotlib - - pandas - - python==3.6 - - scipy - - pip: - - nested_dict - - dicthash diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..334dade --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +future +numpy +matplotlib +pandas +scipy +nested_dict +dicthash -- GitLab