Wrapper around pip for flakey connections.
Project description
Wrapper around pip for use with flaky connections.
Basic idea behind it is that default behaviour of pip to download all packages at once and compile them can get pretty frustrating in situations, where single error in downloading or installing a package can result in repeating whole process all over again.
pypiece tries to get around that by trying to download and install each package separately, by calling pip for each line of requirements.txt. In the end it outputs list of successfully installed packages and ones that failed.
Usage
pypiece < requirements file > < – PIP options >
Available options:
–pip - specify pip binary to use
–retries <N> - try to reinstall failing package _N_ times (default: 3).
–venv <name> - install to virtualenvwrapper created virtual environment _name_.
pip arguments
If – is found in command line, then all arguments after it will be passed unchanged to pip executable on every call.
For example:
pypiece requirements.txt – -i https://my.pypi.repo
Last line is equivalent to:
pip install -r requirements.txt -i https://my.pypi.repo
Examples
Try to install every package found in _requirements.txt_ one by one:
pypiece requirements.txt
Install requirements using pip from virtualenv _test_:
pypiece –venv test requirements.txt
Install requirements using specified pip binary:
pypiece –pip my_env/bin/pip requirements.txt
Feedback
Send your bug reports and suggestions to [lensvol@gmail.com][1]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pypiece-0.1.3.1.tar.gz
.
File metadata
- Download URL: pypiece-0.1.3.1.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8224b9cb4c4a87411d815d2d192f793dd47d92a46b367fcab4b97ca79b85c4e9 |
|
MD5 | 4a3a896ffc7d5dfb78ccd1c4fce27e5a |
|
BLAKE2b-256 | 36ae602ecee557560827b69e69111865181b2e74e9843e7697d7651477318ffc |