-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use setup.py develop for installation #397
base: master
Are you sure you want to change the base?
Conversation
Nice! This is cleaner for deployment, but a little more work during development, right (because it's no longer enough to recompile, you also have to rerun In addition to updating the other installation documents, could you also update the |
Richard pointed out to me that there is python setup.py develop which does what we want for development (i.e. you don't need to re-run python setup.py if you edit the source), see http://stackoverflow.com/questions/19048732/python-setup-py-develop-vs-install +1 for switching to this workflow |
This reverts commit 3f365e4.
7abd4e8
to
65d3103
Compare
This should have the same effect as updating PYTHONPATH. I suppose all the other install-*.md would need to be updated too...