From 8e73fbac52d66172cfed8c819b8f0bbf79f8cb23 Mon Sep 17 00:00:00 2001 From: Zhe Yuan Date: Mon, 13 Oct 2025 10:46:19 -0400 Subject: [PATCH] update gitignore and readme --- .gitignore | 1 + README.md | 16 +++++++++++++++- requirements.txt | 2 ++ 3 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..600d2d3 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.vscode \ No newline at end of file diff --git a/README.md b/README.md index a056862..e875ea6 100644 --- a/README.md +++ b/README.md @@ -1 +1,15 @@ -# Code of MATH 6601 Projects \ No newline at end of file +# Code of MATH 6601 Projects + +### Create a virtual environment and install dependencies + +```bash +conda create -n math6601_env python=3.10 +conda activate math6601_env +pip install -r requirements.txt +``` + +### Project 1 + +```bash +python Project1_Q1.py > Project1_A1.txt +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..806f221 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +numpy +matplotlib \ No newline at end of file