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 up --provider=vmware_fusion |
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 plugin install vagrant-example-plugin |
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
| #!/usr/bin/env python | |
| import argparse | |
| def parse_args(): | |
| pass | |
| def main(args=None): | |
| pass |
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
| The executable python2.6 (from --python=python2.6) does not exist | |
| New python executable in /home/omer/Documents/Projects/Python/nose2-testsuite/.travis-solo/2.7/bin/python2.7 | |
| Not overwriting existing python script /home/omer/Documents/Projects/Python/nose2-testsuite/.travis-solo/2.7/bin/python (you must use /home/omer/Documents/Projects/Python/nose2-testsuite/.travis-solo/2.7/bin/python2.7) | |
| Installing distribute............................................................................................................................................................................................................................done. | |
| Installing pip................done. | |
| Running virtualenv with interpreter /usr/bin/python2.7 | |
| Double requirement given: nose2>=0.4.6 (from -r ./requirements/./testing.txt (line 1)) (already in nose2==0.4.6 (from -r ./requirements/./common.txt (line 5)), name='nose2') | |
| Storing complete log in /home/omer/.pip/pip.log | |
| The executable python3.2 (from --python=python3.2) does not exist | |
| Usin |
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
| language: ruby | |
| rvm: | |
| - 1.9.3 | |
| language: python | |
| python: | |
| - "2.7" | |
| install: | |
| - pip install -r requirements.txt --use-mirrors | |
| - sudo apt-get update -q | |
| - sudo apt-get install -q virtualbox --fix-missing # Everything falls apart here exactly. |
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
| State: - pkg | |
| Name: python | |
| Function: latest | |
| Result: False | |
| Comment: An exception occurred in this state: Traceback (most recent call last): | |
| File "/usr/lib/pymodules/python2.7/salt/state.py", line 1201, in call | |
| *cdata['args'], **cdata['kwargs']) | |
| File "/usr/lib/pymodules/python2.7/salt/states/pkg.py", line 516, in latest | |
| cur = {desired_pkgs[0]: cur} | |
| KeyError: 0 |
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
| sudo rm /usr/local/lib/python?.?/dist-packages/distribute* | |
| sudo rm /usr/local/lib/python?.?/dist-packages/setuptools* |
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
| for p in /usr/bin/python?.?; | |
| do | |
| sudo wget https://bitbucket.org/pypa/setuptools/raw/0.7.3/ez_setup.py -O - | {$p} | |
| done; |
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
| for p in /usr/bin/python?.?; | |
| do | |
| sudo easy_install-{p#python} pip | |
| done; |
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 plugin install vagrant-plugin-bundler |