Getting Started¶
Installing Cue Client from source¶
- Clone the CueClient repo from GitHub
$ git clone https://github.com/stackforge/python-cueclient.git
$ cd python-cueclient
- Setup virtualenv
Note
This is an optional step, but will allow CueClient’s dependencies to be installed in a contained environment that can be easily deleted if you choose to start over or uninstall Cue.
$ virtualenv --no-site-packages .venv
$ . .venv/bin/activate
- Install CueClient and its dependencies
$ pip install -r requirements.txt -r test-requirements.txt
$ python setup.py develop