Skip to content

Instantly share code, notes, and snippets.

@vkhazin
Last active September 29, 2017 14:45
Show Gist options
  • Save vkhazin/1b046f29464ca817f152734abb8d9199 to your computer and use it in GitHub Desktop.
Save vkhazin/1b046f29464ca817f152734abb8d9199 to your computer and use it in GitHub Desktop.
# Installing dependencies locally using terminal
```pip install module-name -t ./python_modules```
# Referencing locall dependencies in python module:
```
import sys
sys.path.insert(0, "./python_modules")
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment