InstallationΒΆ
To install system-wide, run as superuser:
$ pip3 install dob-viewer
To install user-local, simply run:
$ pip3 install -U dob-viewer
To install within a virtualenv, try:
$ mkvirtualenv dob-viewer
(dob-viewer) $ pip3 install dob-viewer
To develop on the project, link to the source files instead:
(dob-viewer) $ deactivate
$ rmvirtualenv dob-viewer
$ git clone git@github.com:tallybark/dob-viewer.git
$ cd dob-viewer
$ mkvirtualenv -a $(pwd) --python=/usr/bin/python3.6 dob-viewer
(dob-viewer) $ make develop
After creating the virtual environment,
to start developing from a fresh terminal, run workon:
$ workon dob-viewer
(dob-viewer) $ ...