https://github.com/ccnokes/learn-data-science-python
This is where I'm learning data science with python
https://github.com/ccnokes/learn-data-science-python
Last synced: 9 months ago
JSON representation
This is where I'm learning data science with python
- Host: GitHub
- URL: https://github.com/ccnokes/learn-data-science-python
- Owner: ccnokes
- Created: 2023-07-18T04:26:38.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-18T16:37:14.000Z (almost 3 years ago)
- Last Synced: 2025-01-18T17:55:22.794Z (over 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# This is where I'm learning data science with python
## Virtual env
I don't know what virtual envs are in python yet outside of a way to apparently manage depedencies.
```
source env/bin/activate
```
To list out dependencies to file:
```
pip3 freeze > requirements.txt
```
To install from that:
```
pip3 install -r requirements.txt
```
This will create an env folder (which is gitignored) that contains a copy of each dependency.