From c6aa3a4949a1a5e58c26c40c108bf03b84fa5363 Mon Sep 17 00:00:00 2001 From: Gary Feng Date: Thu, 14 Jun 2018 11:23:02 -0400 Subject: [PATCH 1/3] removing scikit-image==0.12.3 from requirement to avoid the following message: ``` Downloading https://files.pythonhosted.org/packages/86/d0/b0192dc9a544da90f2d9150bcd84b981c6873e42a1f752b6affb89180ad8/scikit-image-0.12.3.tar.gz (20.7MB) Complete output from command python setup.py egg_info: To install scikit-image from source, you will need numpy. Install numpy with pip: pip install numpy Or use your operating system package manager. For more details, see http://scikit-image.org/docs/stable/install.html ``` --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fe9cdd918..2ed6c4db7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,6 @@ numpy==1.11.1 pandas==0.18.1 scipy==0.17.1 scikit-learn==0.17.1 -scikit-image==0.12.3 pillow==3.4.2 matplotlib==1.5.1 seaborn==0.7.0 From cb65a48f0f08e55fd66e51da3013986195f7feca Mon Sep 17 00:00:00 2001 From: Gary Feng Date: Thu, 14 Jun 2018 16:23:10 -0400 Subject: [PATCH 2/3] removing versions from requirements so we will use most up-to-date --- requirements.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 2ed6c4db7..df619b59d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ -numpy==1.11.1 -pandas==0.18.1 -scipy==0.17.1 -scikit-learn==0.17.1 -pillow==3.4.2 -matplotlib==1.5.1 -seaborn==0.7.0 +numpy +pandas +scipy +scikit-learn +pillow +matplotlib +seaborn jupyter notebook line_profiler From 7eab90a873e08ff8780067eafbc866c6546051ac Mon Sep 17 00:00:00 2001 From: Gary Feng Date: Thu, 14 Jun 2018 16:33:00 -0400 Subject: [PATCH 3/3] putting back scikit-image --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index df619b59d..f31745eca 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,6 +2,7 @@ numpy pandas scipy scikit-learn +scikit-image pillow matplotlib seaborn