Skip to content

Instantly share code, notes, and snippets.

@CrackerJackMack
Created April 1, 2018 08:15
Show Gist options
  • Save CrackerJackMack/2afd2d99454bd8d10ce425c68367203e to your computer and use it in GitHub Desktop.
Save CrackerJackMack/2afd2d99454bd8d10ce425c68367203e to your computer and use it in GitHub Desktop.
$ git co works-bug-ugly 
Switched to branch 'works-bug-ugly'
Your branch is up-to-date with 'origin/works-bug-ugly'.
[kevin,bassle]<0>[python-pip-source-1,works-bug-ugly*]~/devel/python-pip-source-1
$ pip install .
Processing /home/kevin/devel/python-pip-source-1
Collecting libtestpip (from testpip-1==0.0.1)
  Could not find a version that satisfies the requirement libtestpip (from testpip-1==0.0.1) (from versions: )
No matching distribution found for libtestpip (from testpip-1==0.0.1)
[kevin,bassle]<1>[python-pip-source-1,works-bug-ugly*]~/devel/python-pip-source-1
$ pip install -r requirements.txt 
Collecting libtestpip from git+ssh://git@github.com/crackerjackmack/python-pip-source-2@master#egg=libtestpip (from -r requirements.txt (line 1))
  Cloning ssh://git@github.com/crackerjackmack/python-pip-source-2 (to master) to /tmp/pip-build-MycnNx/libtestpip
Collecting pipvoid from git+ssh://git@github.com/crackerjackmack/python-pip-source-3@master#egg=pipvoid (from -r requirements.txt (line 2))
  Cloning ssh://git@github.com/crackerjackmack/python-pip-source-3 (to master) to /tmp/pip-build-MycnNx/pipvoid
Collecting pika==0.10.0 (from libtestpip->-r requirements.txt (line 1))
  Using cached pika-0.10.0-py2.py3-none-any.whl
Requirement already satisfied: requests in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from pipvoid->-r requirements.txt (line 2))
Requirement already satisfied: idna<2.7,>=2.5 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->-r requirements.txt (line 2))
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->-r requirements.txt (line 2))
Requirement already satisfied: certifi>=2017.4.17 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->-r requirements.txt (line 2))
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->-r requirements.txt (line 2))
Installing collected packages: pika, pipvoid, libtestpip
  Running setup.py install for pipvoid ... done
  Running setup.py install for libtestpip ... done
Successfully installed libtestpip-0.1.0 pika-0.10.0 pipvoid-0.2.1
[kevin,bassle]<0>[python-pip-source-1,works-bug-ugly*]~/devel/python-pip-source-1
$ pip install .
Processing /home/kevin/devel/python-pip-source-1
Requirement already satisfied: libtestpip in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from testpip-1==0.0.1)
Requirement already satisfied: pipvoid in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from testpip-1==0.0.1)
Requirement already satisfied: pika==0.10.0 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from libtestpip->testpip-1==0.0.1)
Requirement already satisfied: requests in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from pipvoid->testpip-1==0.0.1)
Requirement already satisfied: idna<2.7,>=2.5 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->testpip-1==0.0.1)
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->testpip-1==0.0.1)
Requirement already satisfied: certifi>=2017.4.17 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->testpip-1==0.0.1)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /home/kevin/.virtualenvs/python-pip-source-1/lib/python2.7/site-packages (from requests->pipvoid->testpip-1==0.0.1)
Building wheels for collected packages: testpip-1
  Running setup.py bdist_wheel for testpip-1 ... done
  Stored in directory: /home/kevin/.cache/pip/wheels/8f/ec/d7/05905bd8cdbb10b7e9203e9ef6df6e2a49a43bb824fd00972b
Successfully built testpip-1
Installing collected packages: testpip-1
Successfully installed testpip-1-0.0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment