Installation
To install system-wide, run as superuser:
$ pip3 install easy-as-pypi-appdirs
To install user-local, simply run:
$ pip3 install -U easy-as-pypi-appdirs
To install within a virtualenv, try:
$ cd "$(mktemp -d)"
$ python3 -m venv .venv
$ . ./.venv/bin/activate
(easy-as-pypi-appdirs) $ pip install easy-as-pypi-appdirs
To develop on the project, link to the source files instead:
(easy-as-pypi-appdirs) $ deactivate
$ git clone git@github.com:doblabs/easy-as-pypi-appdirs.git
$ cd easy-as-pypi-appdirs
$ python3 -m venv easy-as-pypi-appdirs
$ . ./.venv/bin/activate
(easy-as-pypi-appdirs) $ make develop
After creating the virtual environment, it’s easy to start developing from a fresh terminal:
$ cd easy-as-pypi-appdirs
$ . ./.venv/bin/activate
(easy-as-pypi-appdirs) $ ...