Advertisement
Guest User

Virtualenv

a guest
Jul 25th, 2014
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.22 KB | None | 0 0
  1. $ virtualenv --no-site-packages limitedenv
  2.  
  3.  
  4. Using base prefix '/Applications/Canopy.app/appdata/canopy-1.4.1.1975.macosx-x86_64/Canopy.app/Contents'
  5. New python executable in limitedenv/bin/python
  6. dyld: Library not loaded: @rpath/Python
  7.   Referenced from: /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/limitedenv/bin/python
  8.   Reason: image not found
  9. ERROR: The executable limitedenv/bin/python is not functioning
  10. ERROR: It thinks sys.prefix is u'/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages' (should be u'/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/limitedenv')
  11. ERROR: virtualenv is not compatible with this system or executable
  12.  
  13.  
  14.  
  15. $Using base prefix '/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages'
  16. New python executable in limitedenv/bin/python2
  17. Also creating executable in limitedenv/bin/python
  18. Installing setuptools, pip
  19.  
  20.  
  21. -bash: Using: command not found
  22. -bash: New: command not found
  23. -bash: Also: command not found
  24. -bash: Installing: command not found
  25.  
  26.  
  27. $ cd limitedenv/
  28. $ ls
  29.  
  30. bin include lib
  31.  
  32.  
  33. $ source bin/activate
  34. -bash: bin/activate: No such file or directory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement