Created
March 1, 2009 15:18
-
-
Save djmitche/72353 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
| dustin@euclid ~/devel/projects/uthreads/t/virtual $ virtualenv . | |
| New python executable in ./bin/python | |
| Installing setuptools............done. | |
| dustin@euclid ~/devel/projects/uthreads/t/virtual $ source bin/activate | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual $ cd src | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual/src $ python setup.py develop | |
| running develop | |
| running egg_info | |
| writing requirements to uthreads.egg-info/requires.txt | |
| writing uthreads.egg-info/PKG-INFO | |
| writing top-level names to uthreads.egg-info/top_level.txt | |
| writing dependency_links to uthreads.egg-info/dependency_links.txt | |
| writing manifest file 'uthreads.egg-info/SOURCES.txt' | |
| running build_ext | |
| Creating /home/dustin/devel/projects/uthreads/t/virtual/lib/python2.5/site-packages/uthreads.egg-link (link to .) | |
| Adding uthreads 1.0a3 to easy-install.pth file | |
| Installed /home/dustin/devel/projects/uthreads/t/virtual/src | |
| Processing dependencies for uthreads==1.0a3 | |
| Searching for Twisted | |
| Reading http://pypi.python.org/simple/Twisted/ | |
| Reading http://twistedmatrix.com/ | |
| Reading http://www.twistedmatrix.com | |
| Reading http://twistedmatrix.com/products/download | |
| Reading http://twistedmatrix.com/projects/core/ | |
| Best match: Twisted 8.2.0 | |
| Downloading http://tmrc.mit.edu/mirror/twisted/Twisted/8.2/Twisted-8.2.0.tar.bz2#md5=c85f151999df3ecf04c49a781b4438d2 | |
| Processing Twisted-8.2.0.tar.bz2 | |
| Running Twisted-8.2.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-oM8qg5/Twisted-8.2.0/egg-dist-tmp-95HrIL | |
| Adding Twisted 8.2.0 to easy-install.pth file | |
| Installing cftp script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing ckeygen script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing conch script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing im script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing lore script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing mailmail script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing manhole script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing mktap script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing pyhtmlizer script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing tap2deb script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing tap2rpm script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing tapconvert script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing tkconch script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing trial script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installing twistd script to /home/dustin/devel/projects/uthreads/t/virtual/bin | |
| Installed /home/dustin/devel/projects/uthreads/t/virtual/lib/python2.5/site-packages/Twisted-8.2.0-py2.5-linux-x86_64.egg | |
| Searching for zope.interface==3.0.1 | |
| Reading http://pypi.python.org/simple/zope.interface/ | |
| No local packages or download links found for zope.interface==3.0.1 | |
| error: Could not find suitable distribution for Requirement.parse('zope.interface==3.0.1') | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual/src $ python -c 'import uthreads' && echo "ok" | |
| ok | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual/src $ cd .. | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual $ python -c 'import uthreads' && echo "ok" | |
| Traceback (most recent call last): | |
| File "<string>", line 1, in <module> | |
| ImportError: No module named uthreads | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual $ which python | |
| /home/dustin/devel/projects/uthreads/t/virtual/bin/python | |
| (virtual)dustin@euclid ~/devel/projects/uthreads/t/virtual $ python -c 'import pkg_resources; pkg_resources.require("uthreads"); import uthreads' && echo "ok" | |
| ok |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment