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