Skip to content

Instantly share code, notes, and snippets.

@zeroem
Last active December 25, 2015 00:29
Show Gist options
  • Save zeroem/6888187 to your computer and use it in GitHub Desktop.
Save zeroem/6888187 to your computer and use it in GitHub Desktop.
vagrant@raring:~$ virtualenv bad
New python executable in bad/bin/python
Installing distribute...........................................................................................................................................................................................................................done.
Installing pip................done.
vagrant@raring:~$ . bad/bin/activate
(bad)vagrant@raring:~$ pip install -U supervisor
Downloading/unpacking supervisor
Running setup.py egg_info for package supervisor
Downloading/unpacking distribute from https://pypi.python.org/packages/source/d/distribute/distribute-0.7.3.zip#md5=c6c59594a7b180af57af8a0cc0cf5b4a (from supervisor)
Running setup.py egg_info for package distribute
Downloading/unpacking meld3>=0.6.5 (from supervisor)
Running setup.py egg_info for package meld3
Downloading/unpacking setuptools>=0.7 (from distribute->supervisor)
Running setup.py egg_info for package setuptools
Installing collected packages: supervisor, distribute, meld3, setuptools
Running setup.py install for supervisor
Skipping installation of /home/vagrant/bad/lib/python2.7/site-packages/supervisor/__init__.py (namespace package)
Installing /home/vagrant/bad/lib/python2.7/site-packages/supervisor-3.0-py2.7-nspkg.pth
Installing echo_supervisord_conf script to /home/vagrant/bad/bin
Installing pidproxy script to /home/vagrant/bad/bin
Installing supervisorctl script to /home/vagrant/bad/bin
Installing supervisord script to /home/vagrant/bad/bin
Found existing installation: distribute 0.6.34
Uninstalling distribute:
Successfully uninstalled distribute
Running setup.py install for distribute
Running setup.py install for meld3
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named setuptools
Complete output from command /home/vagrant/bad/bin/python -c "import setuptools;__file__='/home/vagrant/bad/build/meld3/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Vq8TVF-record/install-record.txt --single-version-externally-managed --install-headers /home/vagrant/bad/include/site/python2.7:
Traceback (most recent call last):
File "<string>", line 1, in <module>
ImportError: No module named setuptools
----------------------------------------
Command /home/vagrant/bad/bin/python -c "import setuptools;__file__='/home/vagrant/bad/build/meld3/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-Vq8TVF-record/install-record.txt --single-version-externally-managed --install-headers /home/vagrant/bad/include/site/python2.7 failed with error code 1 in /home/vagrant/bad/build/meld3
Storing complete log in /home/vagrant/.pip/pip.log
vagrant@raring:~$ virtualenv good
New python executable in good/bin/python
Installing distribute...........................................................................................................................................................................................................................done.
Installing pip................done.
vagrant@raring:~$ . good/bin/activate
(good)vagrant@raring:~$ pip install supervisor
Downloading/unpacking supervisor
Downloading supervisor-3.0.tar.gz (459kB): 459kB downloaded
Running setup.py egg_info for package supervisor
Requirement already satisfied (use --upgrade to upgrade): distribute in ./good/lib/python2.7/site-packages/distribute-0.6.34-py2.7.egg (from supervisor)
Downloading/unpacking meld3>=0.6.5 (from supervisor)
Downloading meld3-0.6.10.tar.gz (41kB): 41kB downloaded
Running setup.py egg_info for package meld3
Installing collected packages: supervisor, meld3
Running setup.py install for supervisor
Skipping installation of /home/vagrant/good/lib/python2.7/site-packages/supervisor/__init__.py (namespace package)
Installing /home/vagrant/good/lib/python2.7/site-packages/supervisor-3.0-py2.7-nspkg.pth
Installing echo_supervisord_conf script to /home/vagrant/good/bin
Installing pidproxy script to /home/vagrant/good/bin
Installing supervisorctl script to /home/vagrant/good/bin
Installing supervisord script to /home/vagrant/good/bin
Running setup.py install for meld3
Successfully installed supervisor meld3
Cleaning up...
(good)vagrant@raring:~$
vagrant@raring:~$ python --version
Python 2.7.4
vagrant@raring:~$ virtualenv --version
1.9.1
vagrant@raring:~$ pip --version
pip 1.3.1 from /usr/lib/python2.7/dist-packages (python 2.7)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment