From 64032cace54dfcaab16d69ce2cb6a326e32fb2e7 Mon Sep 17 00:00:00 2001 From: Stephen McQuay Date: Wed, 12 Sep 2012 23:33:16 -0600 Subject: [PATCH] original notes file --- notes.txt | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 notes.txt diff --git a/notes.txt b/notes.txt new file mode 100644 index 0000000..06f3b70 --- /dev/null +++ b/notes.txt @@ -0,0 +1,40 @@ +omb script +omb2 script +make a module +fine in directory, PYTHONPATH ... +need to actually install it + +aside: + - hitchhiker's guide to packaging + - state of packaging + +python setup.py install + innards of the setup.py + +python setup.py register + clean up missing fields +python setup.py sdist upload + +pip freeze +pip install +pip remove + + +example: +hg up 2.7 +./configure --prefix=/Users/smcquay/py27 +make -j3 +make install +export PATH=~/py27/bin:$PATH + + +# won't work: +curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | ~/py27/bin/python + + +# install distribute (for pip): +curl -O http://python-distribute.org/distribute_setup.py +~/py27/bin/python distribute_setup.py + +# install pip +curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | ~/py27/bin/python