Files
math6601_projects/README.md
2025-10-13 10:46:19 -04:00

16 lines
270 B
Markdown

# 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
```