From 0009a9365dd6f47ffe62efe9d2a7aa1e463736a1 Mon Sep 17 00:00:00 2001 From: Sharon Lifshitz Date: Mon, 13 Apr 2020 12:30:38 +0300 Subject: [PATCH 1/4] [DOC] getting-started/virtual-env.ipynb: edit the packages-install step to add ipython-sql (for using %sql magic) --- getting-started/virtual-env.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/virtual-env.ipynb b/getting-started/virtual-env.ipynb index aa27365b..4a344697 100644 --- a/getting-started/virtual-env.ipynb +++ b/getting-started/virtual-env.ipynb @@ -63,9 +63,9 @@ " conda install -n [ ...]\n", " ```\n", "\n", - "
For example, the following command installs the SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", + "
For example, the following command installs the IPython SQL magic extention (for using `%sql` to run SQL queries), SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", " ```sh\n", - " conda install -n myenv scipy pandas=0.25.0 tensorflow=1.13.1\n", + " conda install -n myenv ipython-sql scipy pandas=0.25.0 tensorflow=1.13.1\n", " ```\n", "\n", "\n", From 79f21f55f8723de6f4db95e6a51ded02eeba85cb Mon Sep 17 00:00:00 2001 From: Sharon Lifshitz Date: Mon, 13 Apr 2020 12:37:10 +0300 Subject: [PATCH 2/4] [DOC] getting-started/virtual-env.ipynb: fix typo in commit 0009a93 (edit the packages-install step to add ipython-sql (for using %sql magic)) --- getting-started/virtual-env.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/virtual-env.ipynb b/getting-started/virtual-env.ipynb index 4a344697..1eaf41f3 100644 --- a/getting-started/virtual-env.ipynb +++ b/getting-started/virtual-env.ipynb @@ -63,7 +63,7 @@ " conda install -n [ ...]\n", " ```\n", "\n", - "
For example, the following command installs the IPython SQL magic extention (for using `%sql` to run SQL queries), SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", + "
For example, the following command installs the IPython SQL magic extension (for using `%sql` to run SQL queries), SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", " ```sh\n", " conda install -n myenv ipython-sql scipy pandas=0.25.0 tensorflow=1.13.1\n", " ```\n", From 6a84524478da1309d00a3f041c9e146d1b572117 Mon Sep 17 00:00:00 2001 From: gilad-shaham <62057752+gilad-shaham@users.noreply.github.com> Date: Thu, 16 Apr 2020 11:57:09 +0000 Subject: [PATCH 3/4] Revert "[DOC] getting-started/virtual-env.ipynb: edit the packages-install step to add ipython-sql (for using %sql magic)" --- getting-started/virtual-env.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/virtual-env.ipynb b/getting-started/virtual-env.ipynb index 1eaf41f3..aa27365b 100644 --- a/getting-started/virtual-env.ipynb +++ b/getting-started/virtual-env.ipynb @@ -63,9 +63,9 @@ " conda install -n [ ...]\n", " ```\n", "\n", - "
For example, the following command installs the IPython SQL magic extension (for using `%sql` to run SQL queries), SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", + "
For example, the following command installs the SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", " ```sh\n", - " conda install -n myenv ipython-sql scipy pandas=0.25.0 tensorflow=1.13.1\n", + " conda install -n myenv scipy pandas=0.25.0 tensorflow=1.13.1\n", " ```\n", "\n", "\n", From b8c952e038823e74cfffcd2214b12c935de8df65 Mon Sep 17 00:00:00 2001 From: Gilad Shaham Date: Thu, 16 Apr 2020 15:05:38 +0300 Subject: [PATCH 4/4] Removed link to S3 bucket which just shows XML in the browser changed virutal-env to python=3.6 at this stage --- README.md | 1 - getting-started/virtual-env.ipynb | 8 ++++---- welcome.ipynb | 5 ++--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 597ab9a6..d8b40076 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,6 @@ You can download all the additional demos from the [demos repository](https://gi - [Platform components, services, and development ecosystem introduction](https://www.iguazio.com/docs/intro/latest-release/ecosystem/) - [References](https://iguazio.com/docs/reference/latest-release/) - [nuclio-jupyter SDK](https://github.com/nuclio/nuclio-jupyter/blob/master/README.md) for creating and deploying Nuclio functions with Python and Jupyter Notebook -- [Iguazio sample data-set](http://iguazio-sample-data.s3.amazonaws.com/) public Amazon S3 bucket ## Miscellaneous diff --git a/getting-started/virtual-env.ipynb b/getting-started/virtual-env.ipynb index 1eaf41f3..9639f539 100644 --- a/getting-started/virtual-env.ipynb +++ b/getting-started/virtual-env.ipynb @@ -48,12 +48,12 @@ "2. Create a new Python virtual environment by running the following command.\n", " Replace `` with your preferred virtual-environment name:\n", " ```sh\n", - " conda create -n ipykernel python=3.7\n", + " conda create -n ipykernel python=3.6\n", " ```\n", "\n", "
For example, the following command creates an environment named \"myenv\":
\n", " ```sh\n", - " conda create -n myenv ipykernel python=3.7\n", + " conda create -n myenv ipykernel python=3.6\n", " ```\n", "\n", "\n", @@ -65,7 +65,7 @@ "\n", "
For example, the following command installs the IPython SQL magic extension (for using `%sql` to run SQL queries), SciPy, pandas version 0.25.0, and TensorFlow version 1.13.1 packages for a \"myenv\" environment:\n", " ```sh\n", - " conda install -n myenv ipython-sql scipy pandas=0.25.0 tensorflow=1.13.1\n", + " conda install -n myenv ipython-sql scipy pandas=0.25.0 tensorflow=1.13.1 python=3.6\n", " ```\n", "\n", "\n", @@ -150,4 +150,4 @@ }, "nbformat": 4, "nbformat_minor": 4 -} +} \ No newline at end of file diff --git a/welcome.ipynb b/welcome.ipynb index 59789955..ac5eb4a6 100644 --- a/welcome.ipynb +++ b/welcome.ipynb @@ -137,8 +137,7 @@ "- [In-depth platform overview](platform-overview.ipynb) with a break down of the steps for developing a full data science workflow from development to production\n", "- [Platform components, services, and development ecosystem introduction](https://www.iguazio.com/docs/intro/latest-release/ecosystem/)\n", "- [References](https://iguazio.com/docs/reference/latest-release/)\n", - "- [nuclio-jupyter SDK](https://github.com/nuclio/nuclio-jupyter/blob/master/README.md) for creating and deploying Nuclio functions with Python and Jupyter Notebook\n", - "- [Iguazio sample data-set](http://iguazio-sample-data.s3.amazonaws.com/) public Amazon S3 bucket" + "- [nuclio-jupyter SDK](https://github.com/nuclio/nuclio-jupyter/blob/master/README.md) for creating and deploying Nuclio functions with Python and Jupyter Notebook" ] }, { @@ -215,4 +214,4 @@ }, "nbformat": 4, "nbformat_minor": 4 -} +} \ No newline at end of file