-
Notifications
You must be signed in to change notification settings - Fork 6
Manual Setup
Steve Huff edited this page Nov 26, 2013
·
9 revisions
Note: Developers working on nepho should follow the instructions for Development environment with virtualenv
To run nepho without installing it from a package, simply:
- Clone the repository to a local folder:
sh git clone https://github.com/huit/nepho cd nepho
- If you want to check out a specific release of nepho, rather than the bleeding-edge version, create a branch based on a tag. For example, if you want to check out version
0.1.1
, use the following procedure:sh git fetch --tags git checkout -b 0.1.1 0.1.1
- Ensure you have pip and setuptools installed:
sh easy_install pip pip install setuptools setuptools-git
- From within the git repository folder, run setup to automatically install dependencies and the nepho binary:
sh python setup.py develop
- Setup an AWS CLI credentials file called
~/aws/config
, with at minimum:ini [default] aws_access_key_id=ABC123ABC123ABC123ABC123 aws_secret_access_key=abc123abc123abc123abc123abc123abc123abc123 region=us-east-1