Skip to content

Commit

Permalink
Added pkg_resources to troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
Patco96 committed Oct 18, 2022
1 parent 224d698 commit f6e6418
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,20 @@ You can follow [Docker's official guide](https://docs.docker.com/compose/install

## Problems with the database

## Locked database
### Locked database

You can't have more than one instance of Vectory running at the same time. If you try to start Vectory while it's already running, you'll get an error message like this:
```bash
sqlite3.OperationalError: database is locked
```
Just stop the running instance of Vectory and try again.
Just stop the running instance of Vectory and try again.

## Import errors

### No module `pkg_resources`

The Python module `setuptools` has errors if installed with `pip` or `poetry`. You can fix this with:

```bash
wget https://bootstrap.pypa.io/ez_setup.py -O - | python
```

0 comments on commit f6e6418

Please sign in to comment.