Skip to content

Instantly share code, notes, and snippets.

@yashaka
Last active December 27, 2016 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yashaka/a547c6e0df5f6c973acc04655b6e3072 to your computer and use it in GitHub Desktop.
Save yashaka/a547c6e0df5f6c973acc04655b6e3072 to your computer and use it in GitHub Desktop.
How to install local python package

GIVEN $LOCAL_PYTHON_PACKAGE AND virtualenv installed

WHEN Want to use this local version in $YOUR_PROJECT

THEN

  • Create/activate virtualenv for you project
  • cd $LOCAL_PYTHON_PACKAGE
  • python setup.py install
  • cd $YOUR_PROJECT
  • use it;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment