Skip to content

Instantly share code, notes, and snippets.

@boegel
Created May 22, 2014 18:08
Show Gist options
  • Save boegel/f26b64322eb2a02981f5 to your computer and use it in GitHub Desktop.
Save boegel/f26b64322eb2a02981f5 to your computer and use it in GitHub Desktop.
from setuptools import setup
setup(name='test', packages=['test'])
# this file should be in a subdir named 'test'
print 'foo'
@boegel
Copy link
Author

boegel commented May 22, 2014

install the Python package test using:

python setup.py install --prefix=/tmp

Where does it end up? /tmp/lib/python2.x/site-packages or /tmp/lib64/python2.x/site-packages?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment