From 861f308de3c13f5176bca782678a3092364802af Mon Sep 17 00:00:00 2001
From: Dirk Colbry <colbrydi@msu.edu>
Date: Fri, 3 Feb 2023 14:59:16 -0500
Subject: [PATCH] Fixing rebase

---
 README.md       | 13 +++++--------
 environment.yml |  6 ++++++
 2 files changed, 11 insertions(+), 8 deletions(-)
 create mode 100644 environment.yml

diff --git a/README.md b/README.md
index 58defc3..15bcc8f 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,8 @@
-# Data_Science_Bridge_Curriculum
+# DataTools_Tutorial_Demo
+Set of jupyter notebooks created by students in CMSE495 (Michigan State University) that demonstrate some useful data science tools. 
 
-Self guided curriculum to prepare students to start a Masters Degree in Data Science. 
+This notebook includse an environment.yml file. Create and activate an enviornment using the following commands (Assumes anadonda or minicond is installed):
 
-If you are new to git please review the following self guided curriculum:
+conda env create --prefix ./envs --file environment.yml
+conda activate ./envs
 
-- [Git Guide](https://msu-cmse-courses.github.io/cmse802-f20-student/0000--Jupyter-Getting-Started-Guide.html)
-
-Written by:
-- Dirk Colbry
-- 
diff --git a/environment.yml b/environment.yml
new file mode 100644
index 0000000..4611d30
--- /dev/null
+++ b/environment.yml
@@ -0,0 +1,6 @@
+name: envs
+channels:
+  - defaults
+dependencies:
+  - jupyter
+  - pip
-- 
GitLab