https://github.com/thomasnield/anaconda_calculus_fundamentals
https://github.com/thomasnield/anaconda_calculus_fundamentals
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasnield/anaconda_calculus_fundamentals
- Owner: thomasnield
- Created: 2023-11-10T12:26:47.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-05T16:23:47.000Z (over 2 years ago)
- Last Synced: 2025-03-31T21:18:59.285Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 1.34 MB
- Stars: 3
- Watchers: 2
- Forks: 3
- 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 purge and cleanup, delete the virtual environment.
```shell
rm -rf .venv
```