An open API service indexing awesome lists of open source software.

https://github.com/edamghy/application-synthese


https://github.com/edamghy/application-synthese

Last synced: about 2 months ago
JSON representation

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