diff --git a/data-fundamentals-dev-rel/connect-to-env/connect-to-env.md b/data-fundamentals-dev-rel/connect-to-env/connect-to-env.md
index 29e9bd6c7..798d0321d 100644
--- a/data-fundamentals-dev-rel/connect-to-env/connect-to-env.md
+++ b/data-fundamentals-dev-rel/connect-to-env/connect-to-env.md
@@ -21,10 +21,26 @@ Estimated Time: 5 minutes

-1. Select **`notebooks/data_fundamentals`** directory to open it. Double click on file **`data_fundamentals_lab.ipynb`** and it will open in the the panel on the right.
+3. Select **`notebooks/data_fundamentals`** directory to open it. Double click on file **`data_fundamentals_lab.ipynb`** and it will open in the the panel on the right.

+4. If the notebooks folder remains empty, open up a new **Terminal** from Launcher and run this code block:
+
+ ```
+
+ mkdir -p notebooks && curl -L "https://objectstorage.us-ashburn-1.oraclecloud.com/p/Pg8kffjHaKzjj8pCnMbUaNmik_JBnNO-MXsaIva4iUQBFZK52oLykmY3mIhai9MS/n/axywji1aljc2/b/kirkstorage/o/dev-rel-notebooks.zip" -o /tmp/dev-rel-notebooks.zip && unzip /tmp/dev-rel-notebooks.zip -d notebooks
+
+ ```
+
+ If curl is not available, use this command:
+
+ ```
+
+ mkdir -p notebooks && wget -O /tmp/dev-rel-notebooks.zip "https://objectstorage.us-ashburn-1.oraclecloud.com/p/Pg8kffjHaKzjj8pCnMbUaNmik_JBnNO-MXsaIva4iUQBFZK52oLykmY3mIhai9MS/n/axywji1aljc2/b/kirkstorage/o/dev-rel-notebooks.zip" && unzip /tmp/dev-rel-notebooks.zip -d notebooks
+
+ ````
+
## Task 2: Learn to use the components of Unified Model Theory (UMT)
You will use a Jupyter Notebook in a JupyterLab server to build and test database queries. If you are new to notebooks, the following tips will help you get started and work smoothly.