16 lines
305 B
Markdown
16 lines
305 B
Markdown
### 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
|
|
```
|
|
|
|
### Run programs
|
|
|
|
```bash
|
|
python Project1_Q1.py > Project1_A1.txt
|
|
python Project1_Q2.py > Project1_A2.txt
|
|
python Project1_Q3.py
|
|
```
|