From 657457787a1e21e867f2f284b6ff1ca8adf721b7 Mon Sep 17 00:00:00 2001 From: Erik Frisk <erik.frisk@liu.se> Date: Sat, 25 Aug 2018 17:07:08 +0200 Subject: [PATCH] Added a requirements.txt file and modified README.md --- README.md | 4 ++-- requirements.txt | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 5de42d7..066f933 100644 --- a/README.md +++ b/README.md @@ -32,9 +32,9 @@ and activate the virtual environment ```bash % source env/bin/activate ``` -Then install the necessary packages +Then install the necessary packages by ```bash -(env) % pip install numpy matplotlib scipy sklearn jupyterlab +(env) % pip install -r requirements.txt ``` Now, start [Jupyter Lab](https://jupyterlab.readthedocs.io/) or [Jupyter Notebook](https://jupyter-notebook.readthedocs.io/) if you prefer by ```bash diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..685ddc0 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +numpy +matplotlib +scipy +sklearn +jupyterlab \ No newline at end of file -- GitLab