Last active
September 29, 2017 14:45
-
-
Save vkhazin/1b046f29464ca817f152734abb8d9199 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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