Guest User

Untitled

a guest
Apr 26th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. package=${1:?}
  4. directory=${2:?}
  5.  
  6. virtualenv --no-site-packages $directory && \
  7. cd $directory && \
  8. source bin/activate && \
  9. pip -E . install -U $package
Add Comment
Please, Sign In to add comment