Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
Parallel pacman package downloader

## Manual installation (packaging to follow)
This package needs python 3.6 or later.

Create requisite directories and set up config file:

```
# python3 setup.py install
# useradd -r fastpac
# useradd --system fastpac
# mkdir -p /var/cache/fastpac/{pkg,pkglists}
# chown -R fastpac:fastpac /var/cache/fastpac
# cp config.py /etc/fastpac.conf.py
Expand All @@ -28,7 +30,7 @@ fastpac, which you can use to test the codebase by running `py.test`.
To set up a development environment, run the following commands:

```
$ pip install --user -e .[dev] # install all the fastpac deps including dev to user profile
$ pip install --user -e .[dev] # install all the fastpac deps to user profile, including dev deps
$ py.test # run test suite to make sure everything is ok
```