Skip to content

Instantly share code, notes, and snippets.

@tswicegood
Created June 2, 2011 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tswicegood/02519a8a0806e4fc7c0e to your computer and use it in GitHub Desktop.
Save tswicegood/02519a8a0806e4fc7c0e to your computer and use it in GitHub Desktop.
output of pip install armstrong in Vagrant. Second file shows output with pip install -vvv
vagrant up
[default] Provisioning enabled with puppet...
[default] Importing base box 'armstrong'...
[default] Matching MAC address for NAT networking...
[default] Running any VM customizations...
[default] Clearing any previously set forwarded ports...
[default] Forwarding ports...
[default] -- http: 80 => 8080 (adapter 1)
[default] -- ssh: 22 => 2222 (adapter 1)
[default] Creating shared folders metadata...
[default] Preparing host only network...
[default] Creating new host only network for environment...
[default] Booting VM...
[default] Waiting for VM to boot. This can take a few minutes.
[default] VM booted and ready for use!
[default] Enabling host only network...
[default] Mounting shared folders...
[default] -- v-root: /vagrant
[default] -- manifests: /tmp/vagrant-puppet/manifests
[default] -- v-pp-m0: /tmp/vagrant-puppet/modules-0
[default] Running provisioner: Vagrant::Provisioners::Puppet...
[default] Running Puppet with armstrong.pp...
[default] notice: /Stage[pre]/Python/Package[python-setuptools]/ensure: ensure changed 'purged' to 'latest'
[default] notice: /Stage[pre]/Python/Package[python-dev]/ensure: ensure changed 'purged' to 'latest'
[default]
[default] notice: /Stage[pre]/Python/Package[git-core]/ensure: ensure changed 'purged' to 'latest'
[default] notice: /Stage[pre]/Python/Exec[pip]: Triggered 'refresh' from 1 events
[default] err: /Stage[main]//Package[armstrong]/ensure: change from absent to present failed: Execution of '/usr/local/bin/pip install armstrong' returned 1: Downloading/unpacking armstrong
Running setup.py egg_info for package armstrong
Downloading/unpacking armstrong.cli>=0.3.2,<0.4 (from armstrong)
Running setup.py egg_info for package armstrong.cli
Downloading/unpacking armstrong.core.arm-content>=0.3.0,<0.4 (from armstrong)
Running setup.py egg_info for package armstrong.core.arm-content
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/usr/lib/python2.7/dist-packages/setuptools/__init__.py", line 2, in <module>
from setuptools.extension import Extension, Library
File "/usr/lib/python2.7/dist-packages/setuptools/extension.py", line 2, in <module>
from setuptools.dist import _get_unpatched
File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 6, in <module>
from setuptools.command.install import install
File "/usr/lib/python2.7/dist-packages/setuptools/command/__init__.py", line 8, in <module>
from setuptools.command import install_scripts
File "/usr/lib/python2.7/dist-packages/setuptools/command/install_scripts.py", line 3, in <module>
from pkg_resources import Distribution, PathMetadata, ensure_directory
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <module>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 668, in subscribe
callback(dist)
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <lambda>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2195, in activate
map(declare_namespace, self._get_metadata('namespace_packages.txt'))
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1776, in declare_namespace
__import__(parent)
ImportError: No module named armstrong
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/usr/lib/python2.7/dist-packages/setuptools/__init__.py", line 2, in <module>
from setuptools.extension import Extension, Library
File "/usr/lib/python2.7/dist-packages/setuptools/extension.py", line 2, in <module>
from setuptools.dist import _get_unpatched
File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 6, in <module>
from setuptools.command.install import install
File "/usr/lib/python2.7/dist-packages/setuptools/command/__init__.py", line 8, in <module>
from setuptools.command import install_scripts
File "/usr/lib/python2.7/dist-packages/setuptools/command/install_scripts.py", line 3, in <module>
from pkg_resources import Distribution, PathMetadata, ensure_directory
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <module>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 668, in subscribe
callback(dist)
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <lambda>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2195, in activate
map(declare_namespace, self._get_metadata('namespace_packages.txt'))
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1776, in declare_namespace
__import__(parent)
ImportError: No module named armstrong
----------------------------------------
Command python setup.py egg_info failed with error code 1
Storing complete log in /home/vagrant/.pip/pip.log
[default]
vagrant up # runs pip with pip install -vvv
[default] Provisioning enabled with puppet...
[default] Importing base box 'armstrong'...
[default] Matching MAC address for NAT networking...
[default] Running any VM customizations...
[default] Clearing any previously set forwarded ports...
[default] Forwarding ports...
[default] -- http: 80 => 8080 (adapter 1)
[default] -- ssh: 22 => 2222 (adapter 1)
[default] Creating shared folders metadata...
[default] Preparing host only network...
[default] Creating new host only network for environment...
[default] Booting VM...
[default] Waiting for VM to boot. This can take a few minutes.
[default] VM booted and ready for use!
[default] Enabling host only network...
[default] Mounting shared folders...
[default] -- v-root: /vagrant
[default] -- manifests: /tmp/vagrant-puppet/manifests
[default] -- v-pp-m0: /tmp/vagrant-puppet/modules-0
[default] Running provisioner: Vagrant::Provisioners::Puppet...
[default] Running Puppet with armstrong.pp...
[default] notice: /Stage[pre]/Python/Package[git-core]/ensure: ensure changed 'purged' to 'latest'
[default] notice: /Stage[pre]/Python/Package[python-dev]/ensure: ensure changed 'purged' to 'latest'
[default] notice: /Stage[pre]/Python/Package[python-setuptools]/ensure: ensure changed 'purged' to 'latest'
[default] notice: /Stage[pre]/Python/Exec[pip]: Triggered 'refresh' from 1 events
[default] err: /Stage[main]//Package[armstrong]/ensure: change from absent to present failed: Execution of '/usr/local/bin/pip install -vvv armstrong' returned 1: Downloading/unpacking armstrong
Running setup.py egg_info for package armstrong
Running command python setup.py egg_info
running egg_info
writing requirements to pip-egg-info/armstrong.egg-info/requires.txt
writing pip-egg-info/armstrong.egg-info/PKG-INFO
writing namespace_packages to pip-egg-info/armstrong.egg-info/namespace_packages.txt
writing top-level names to pip-egg-info/armstrong.egg-info/top_level.txt
writing dependency_links to pip-egg-info/armstrong.egg-info/dependency_links.txt
warning: manifest_maker: standard file '-c' not found
reading manifest file 'pip-egg-info/armstrong.egg-info/SOURCES.txt'
writing manifest file 'pip-egg-info/armstrong.egg-info/SOURCES.txt'
Downloading/unpacking armstrong.cli>=0.3.2,<0.4 (from armstrong)
Running setup.py egg_info for package armstrong.cli
Running command python setup.py egg_info
running egg_info
writing pip-egg-info/armstrong.cli.egg-info/PKG-INFO
writing namespace_packages to pip-egg-info/armstrong.cli.egg-info/namespace_packages.txt
writing top-level names to pip-egg-info/armstrong.cli.egg-info/top_level.txt
writing dependency_links to pip-egg-info/armstrong.cli.egg-info/dependency_links.txt
writing entry points to pip-egg-info/armstrong.cli.egg-info/entry_points.txt
warning: manifest_maker: standard file '-c' not found
reading manifest file 'pip-egg-info/armstrong.cli.egg-info/SOURCES.txt'
writing manifest file 'pip-egg-info/armstrong.cli.egg-info/SOURCES.txt'
Source in ./build/armstrong.cli has version 0.3.2, which satisfies requirement armstrong.cli>=0.3.2,<0.4 (from armstrong)
Downloading/unpacking armstrong.core.arm-content>=0.3.0,<0.4 (from armstrong)
Running setup.py egg_info for package armstrong.core.arm-content
Running command python setup.py egg_info
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/usr/lib/python2.7/dist-packages/setuptools/__init__.py", line 2, in <module>
from setuptools.extension import Extension, Library
File "/usr/lib/python2.7/dist-packages/setuptools/extension.py", line 2, in <module>
from setuptools.dist import _get_unpatched
File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 6, in <module>
from setuptools.command.install import install
File "/usr/lib/python2.7/dist-packages/setuptools/command/__init__.py", line 8, in <module>
from setuptools.command import install_scripts
File "/usr/lib/python2.7/dist-packages/setuptools/command/install_scripts.py", line 3, in <module>
from pkg_resources import Distribution, PathMetadata, ensure_directory
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <module>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 668, in subscribe
callback(dist)
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <lambda>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2195, in activate
map(declare_namespace, self._get_metadata('namespace_packages.txt'))
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1776, in declare_namespace
__import__(parent)
ImportError: No module named armstrong
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 3, in <module>
File "/usr/lib/python2.7/dist-packages/setuptools/__init__.py", line 2, in <module>
from setuptools.extension import Extension, Library
File "/usr/lib/python2.7/dist-packages/setuptools/extension.py", line 2, in <module>
from setuptools.dist import _get_unpatched
File "/usr/lib/python2.7/dist-packages/setuptools/dist.py", line 6, in <module>
from setuptools.command.install import install
File "/usr/lib/python2.7/dist-packages/setuptools/command/__init__.py", line 8, in <module>
from setuptools.command import install_scripts
File "/usr/lib/python2.7/dist-packages/setuptools/command/install_scripts.py", line 3, in <module>
from pkg_resources import Distribution, PathMetadata, ensure_directory
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <module>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 668, in subscribe
callback(dist)
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2691, in <lambda>
add_activation_listener(lambda dist: dist.activate())
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 2195, in activate
map(declare_namespace, self._get_metadata('namespace_packages.txt'))
File "/usr/lib/python2.7/dist-packages/pkg_resources.py", line 1776, in declare_namespace
__import__(parent)
ImportError: No module named armstrong
----------------------------------------
Command python setup.py egg_info failed with error code 1
Exception information:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/pip-1.0.1-py2.7.egg/pip/basecommand.py", line 126, in main
self.run(options, args)
File "/usr/local/lib/python2.7/dist-packages/pip-1.0.1-py2.7.egg/pip/commands/install.py", line 223, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle)
File "/usr/local/lib/python2.7/dist-packages/pip-1.0.1-py2.7.egg/pip/req.py", line 986, in prepare_files
req_to_install.run_egg_info()
File "/usr/local/lib/python2.7/dist-packages/pip-1.0.1-py2.7.egg/pip/req.py", line 222, in run_egg_info
command_desc='python setup.py egg_info')
File "/usr/local/lib/python2.7/dist-packages/pip-1.0.1-py2.7.egg/pip/__init__.py", line 255, in call_subprocess
% (command_desc, proc.returncode))
InstallationError: Command python setup.py egg_info failed with error code 1
Storing complete log in /home/vagrant/.pip/pip.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment