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

https://github.com/lst97/simple-receipt-manager-backend


https://github.com/lst97/simple-receipt-manager-backend

flask python3

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

          

# Installing packages using pip and virtual environments

## Install virtualenv

```code
python3 -m pip install --user virtualenv
```

## Creating a virtual environment

```code
python3 -m venv ./.venv
```

## Activating a virtual environment

```code
source ./.venv/bin/activate
```

## Using requirements files

```code
python3 -m pip install -r requirements.txt
```

## Run

```code
python3 ./src/app/app.py
```