Skip to content

Commit

Permalink
add some optimization tip
Browse files Browse the repository at this point in the history
  • Loading branch information
fdev31 committed Feb 13, 2025
1 parent 4a2f0d4 commit bc70784
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions site/Optimizations.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@
- Leaving the configuration for plugins which are not enabled will have no impact.
- Using multiple configuration files only have a small impact on the startup time.

### Pypr

You can run `pypr` using `pypy` (version 3) for a more snappy experience.
One way is to use a `pypy3` virtual environment:

```bash
pypy3 -m venv pypr-venv
source ./pypr-venv/bin/activate
cd <pypr source folder>
pip install -e .
```

### Pypr command

In case you want to save some time when interacting with the daemon
Expand Down

0 comments on commit bc70784

Please sign in to comment.