https://github.com/thomasnield/classpert_emds
https://github.com/thomasnield/classpert_emds
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasnield/classpert_emds
- Owner: thomasnield
- Created: 2023-12-06T15:46:01.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-12T18:11:52.000Z (over 2 years ago)
- Last Synced: 2025-10-23T00:34:56.155Z (8 months ago)
- Language: HTML
- Size: 1.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instructions
1. Create virtual environment.
```shell
python3 -m venv .venv
```
2. Activate virtual environment.
```shell
source ./.venv/bin/activate
```
3. Install dependencies.
```shell
pip install -r requirements.txt
```
4. To convert notebooks to HTML.
```
jupyter nbconvert classpert_hw_1.ipynb --to html
```
4. To purge and cleanup, delete the virtual environment.
```shell
rm -rf .venv
```