Skip to content

Commit

Permalink
Merge pull request #8 from pentoai/download-version
Browse files Browse the repository at this point in the history
Download version
  • Loading branch information
fsuzacq authored Oct 18, 2022
2 parents 0fc2b5b + 01f0ac3 commit 4e0b339
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 84 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
```
Loading

0 comments on commit 4e0b339

Please sign in to comment.