Skip to content

Instantly share code, notes, and snippets.

@offby1
Created October 9, 2014 21:28
Show Gist options
  • Save offby1/d94a8d653d86f505e81a to your computer and use it in GitHub Desktop.
Save offby1/d94a8d653d86f505e81a to your computer and use it in GitHub Desktop.
Last login: Thu Oct 9 10:04:28 on ttys003
:) 14:25:34 [erichanchrow@Eric-Hanchrows-iMac ~]$ cd .virtualenvs/
:) 14:25:43 [erichanchrow@Eric-Hanchrows-iMac .virtualenvs]$ python --version
Python 2.7.5
:) 14:25:51 [erichanchrow@Eric-Hanchrows-iMac .virtualenvs]$ virtualenv wotevs
New python executable in wotevs/bin/python
Installing Setuptools..............................................................................................................................................................................................................................done.
Installing Pip.....................................................................................................................................................................................................................................................................................................................................done.
:) 14:25:59 [erichanchrow@Eric-Hanchrows-iMac .virtualenvs]$ . wotevs/bin/activate
(wotevs):) 14:26:03 [erichanchrow@Eric-Hanchrows-iMac .virtualenvs]$ pip install daemon
Downloading/unpacking daemon
Using download cache from /Users/erichanchrow/.python-package-cache/https%3A%2F%2Fpypi.python.org%2Fpackages%2Fsource%2Fd%2Fdaemon%2Fdaemon-1.1.tar.gz
Running setup.py egg_info for package daemon
Installing collected packages: daemon
Running setup.py install for daemon
Successfully installed daemon
Cleaning up...
(wotevs):) 14:26:06 [erichanchrow@Eric-Hanchrows-iMac .virtualenvs]$ python
Python 2.7.5 (default, Mar 9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from daemon import runner
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name runner
>>> import daemon
>>> daemon.__file__
'/Users/erichanchrow/.virtualenvs/wotevs/lib/python2.7/site-packages/daemon.pyc'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment