InstallationΒΆ

To install stockroom, run this command in your terminal:

$ pip install stockroom

This is the preferred method to install stockroom, as it will always install the most recent stable release.

The source for stockroom can be downloaded from the Github repo. Below code block shows how to install stockroom from source.

$ git clone git://github.com/hhsecond/stockroom
$ cd stockroom
$ python setup.py install

But if you are planning to contribute to stockroom, you might want to install stockroom in development mode which enables you to test the changes you make easily. Installing in development mode is possible with a slight tweak in the above commands

$ python setup.py develop