projectatomic / openshift2nulecule

Create Nulecule application from OpenShift project
GNU General Public License v2.0
6 stars 9 forks source link

Manual installation doc #35

Closed surajssd closed 8 years ago

surajssd commented 8 years ago

Added instructions to install manually for the normal usage as well as for the developer who wants to contribute.

Fixes issue #15

kadel commented 8 years ago

LGTM :+1:

surajssd commented 8 years ago

You are okay with the virtualenv right?

kadel commented 8 years ago

Yep, I'm using it myself. Only slightly different way. To be honest I don't know what python setup.py develop does. But I trust you that you do ;-)

I personally develop like this:

mkvirtualenv o2n
pip install -r requirments.txt
export PYTHONPATH=`pwd`:$PYTHONPATH
python openshift2nulecule/cli/main.py  .......
surajssd commented 8 years ago

@kadel yes I use python setup.py develop it also works nice and is also cleaner. That is I can directly use the binary openshift2nulecule and everything works fine. And changes get reflected from the binary itself.