https://github.com/thomasnield/anaconda_probability_fundamentals
https://github.com/thomasnield/anaconda_probability_fundamentals
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/thomasnield/anaconda_probability_fundamentals
- Owner: thomasnield
- Created: 2023-10-05T11:20:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-18T21:13:45.000Z (over 1 year ago)
- Last Synced: 2025-05-09T01:51:24.419Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 5.68 MB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instructions
1) Create virtual environment.
```
python3 -m venv .venv
```
2) Activate virtual environment.
```
./.venv/bin/activate
```
3) Install dependencies
```
pip install -r requirements.txt
```
4) To purge and cleanup, delete the virtual environment.
```
rm -rf .venv
```