Last active
December 24, 2015 23:29
-
-
Save zeroem/6880370 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
PLAY [all] ******************************************************************** | |
GATHERING FACTS *************************************************************** | |
ok: [default] | |
TASK: [install envs] ********************************************************** | |
failed: [default] => {"cmd": "/home/vagrant/supervisor/bin/pip install -U --use-mirrors supervisor", "failed": true} | |
msg: stdout: New python executable in /home/vagrant/supervisor/bin/python | |
Installing distribute.................................................................................................. | |
....................................................................................................................... | |
..done. | |
Installing pip................done. | |
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=c6c | |
59594a7b180af57af8a0cc0cf5b4a (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/supervisor/lib/python2.7/site-packages/supervisor/__init__.py (namespace pac | |
kage) | |
Installing /home/vagrant/supervisor/lib/python2.7/site-packages/supervisor-3.0-py2.7-nspkg.pth | |
Installing echo_supervisord_conf script to /home/vagrant/supervisor/bin | |
Installing pidproxy script to /home/vagrant/supervisor/bin | |
Installing supervisorctl script to /home/vagrant/supervisor/bin | |
Installing supervisord script to /home/vagrant/supervisor/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/supervisor/bin/python -c "import setuptools;__file__='/home/vagrant/supe | |
rvisor/build/meld3/setup.py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --re | |
cord /tmp/pip-lxj2xW-record/install-record.txt --single-version-externally-managed --install-headers /home/vagrant/supe | |
rvisor/include/site/python2.7: | |
Traceback (most recent call last): | |
File "<string>", line 1, in <module> | |
ImportError: No module named setuptools | |
---------------------------------------- | |
Command /home/vagrant/supervisor/bin/python -c "import setuptools;__file__='/home/vagrant/supervisor/build/meld3/setup. | |
py';exec(compile(open(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-lxj2xW-reco | |
rd/install-record.txt --single-version-externally-managed --install-headers /home/vagrant/supervisor/include/site/pytho | |
n2.7 failed with error code 1 in /home/vagrant/supervisor/build/meld3 | |
Storing complete log in /home/vagrant/.pip/pip.log | |
FATAL: all hosts have already failed -- aborting | |
PLAY RECAP ******************************************************************** | |
to retry, use: --limit @/home/dhamilton/playbook.yaml.retry | |
default : ok=1 changed=0 unreachable=0 failed=1 | |
Ansible failed to complete successfully. Any error output should be | |
visible above. Please fix these errors and try again. |
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
vagrant@raring:~$ virtualenv A | |
New python executable in A/bin/python | |
Installing distribute...........................................................................................................................................................................................................................done. | |
Installing pip................done. | |
vagrant@raring:~$ . A/bin/activate | |
(A)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 ./A/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/A/lib/python2.7/site-packages/supervisor/__init__.py (namespace package) | |
Installing /home/vagrant/A/lib/python2.7/site-packages/supervisor-3.0-py2.7-nspkg.pth | |
Installing echo_supervisord_conf script to /home/vagrant/A/bin | |
Installing pidproxy script to /home/vagrant/A/bin | |
Installing supervisorctl script to /home/vagrant/A/bin | |
Installing supervisord script to /home/vagrant/A/bin | |
Running setup.py install for meld3 | |
Successfully installed supervisor meld3 | |
Cleaning up... | |
(A)vagrant@raring:~$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment