https://github.com/edamghy/application-synthese
https://github.com/edamghy/application-synthese
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edamghy/application-synthese
- Owner: EDAMGHY
- Created: 2024-07-26T18:53:04.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-07-26T19:01:25.000Z (10 months ago)
- Last Synced: 2025-02-05T13:38:21.843Z (4 months ago)
- Language: Python
- Size: 611 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Application Synthese (Python for Data Science)
## Create a new virtual environment
python -m venv venv
## Activate the virtual environment
### On Windows
```powershell
venv\Scripts\activate
```### On Unix or MacOS
```bash
source venv/bin/activate
```## Install the dependencies
pip install -r requirements.txt