Skip to main content
Build status Documentation Status PyPI

A CLI which aims to provide an npm-like experience when installing Python packages.

Features

  • Install packages to isolated global virtual environments.

    • Executables are linked to the Python Scripts folder so you can still use the CLI without activating the venv.

    • This allows you to install different CLI tools without worrying about dependency conflicts.

  • Install packages to a local virtual environment.

    • Dependencies are stored in requirements.txt (development) and setup.cfg (production, as the install_requires option).

  • When removing a package, also remove its sub-dependencies.

  • Easily run commands in the local virtual environment.

  • Generate a lock file (requirements-lock.txt).

Installation

vpip is hosted on pypi:

pip install vpip

After installing vpip as a CLI, you can use it to install other packages (globally or locally).

Usage example

Install:

  • vpip install - Create/activate a local venv and install all dependencies.

  • vpip install configupdater - Create/activate a local venv, install configupdater, and add to production dependency.

  • vpip install -g youtube-dl - Create a venv under ~/.vpip, install youtube-dl, and link the executable (youtube-dl.exe) to the script folder.

  • vpip install -g https://github.com/eight04/ComicCrawler/archive/refs/heads/master.zip - You can also install global CLI from a URL.

Uninstall:

  • vpip uninstall pylint - Activate the local venv, uninstall pylint, and remove pylint from both dev/prod dependency.

Update:

  • vpip update pylint - Upgrade pylint to the compatible version.

  • vpip update pylint --latest - Upgrade pylint to the latest release.

Execute command:

  • vpip run python - Launch python REPL in the local venv.

  • vpip run pylint my_proj - Run pylint installed in the local venv.

List dependencies:

  • vpip list - List development/production dependencies.

  • vpip list --outdated - List development/production dependencies that are outdated.

  • vpip list -g - List globally installed packages.

Compatibility

vpip is a cross-platform CLI. Please report any compatibility issues.

Documentation

https://vpip.readthedocs.io/en/latest/index.html

Similar projects

  • pipm - which doesn’t use virtualenv.

Changelog

  • 0.8.0 (Apr 23, 2022)

    • Change: now vpip would try to avoid sub-dependencies conflicts by passing all dependencies to pip install when installing/updating packages.

    • Fix: now vpip update won’t install packages whose env marker evaluates to false.

  • 0.7.0 (Feb 9, 2022)

    • Change: now wheel is also pre-installed in venv like pip.

  • 0.6.0 (Jan 25, 2022)

    • Fix: make sure the script folder is in env variable path when vpip link.

    • Add: support installing global CLI from a URL.

    • Change: pip_api.install now accepts multiple packages.

    • Change: vpip update now updates sub-dependencies.

  • 0.5.0 (Jan 5, 2022)

    • Change: bump to python@3.7+

    • Change: drop pkg_resources, improve performance.

    • Change: don’t use pip internal when finding global scripts folder.

    • Fix: use utf8 encoding when reading/writing setup.cfg or requirements.txt.

  • 0.4.3 (Jan 31, 2020)

    • Fix: don’t break sub-dependencies when uninstall.

  • 0.4.2 (Nov 9, 2019)

    • Fix: generate setup.py automatically if needed.

    • Fix: use utf8 encoding when parsing pip output.

  • 0.4.1 (Nov 2, 2019)

    • Nothing is changed. Updated README and corrected some errors.

  • 0.4.0 (Nov 1, 2019)

    • Fix: rebuild egg files after doing an incompatible update.

    • Fix: clean unused packages after uninstall.

    • Add: update_venv command.

    • Breaking: pip_api.show and pip_api.uninstall now accept multiple packages.

  • 0.3.0 (Oct 31, 2019)

    • Support Unix system.

    • Add: generate a lock file.

  • 0.2.3 (Feb 10, 2019)

    • Fix: pypi.is_compatible treat 0.1.0 and 0.2.0 as compatible.

    • Fix: don’t include pre-release when checking updates.

    • Update dependencies.

  • 0.2.2 (Feb 2, 2019)

    • Add: link command.

  • 0.2.1 (Nov 16, 2018)

    • Add: user defined commands.

  • 0.2.0 (Nov 16, 2018)

    • Add documentation.

    • Change: console scripts will be overwritten by default, matching pip’s default behavior.

  • 0.1.0 (Nov 13, 2018)

    • First release

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vpip-0.8.0.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vpip-0.8.0-py3-none-any.whl (23.4 kB view details)

Uploaded Python 3

File details

Details for the file vpip-0.8.0.tar.gz.

File metadata

  • Download URL: vpip-0.8.0.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for vpip-0.8.0.tar.gz
Algorithm Hash digest
SHA256 871f746471d33541696c28336ceacb62776d76440bb5b58de7d065c152b0bf01
MD5 2fa99adc5fbf38f8aa481053ce8616f9
BLAKE2b-256 095ecabbb7bf57cad73ba23c703cfec220c80a3d62e6181ec1184ba4f6fe3a66

See more details on using hashes here.

File details

Details for the file vpip-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: vpip-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 23.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.10.4

File hashes

Hashes for vpip-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 951a1e9113ed39491e9a2eb941d63553fa8529c50560f27fdeb515d9adafec18
MD5 78000dcf0cdb73b87f46673232ee3406
BLAKE2b-256 9a500d28aa4d1f7203e47f5ea5fbe32d5628073e1918dea0b5133ea3bccf8b84

See more details on using hashes here.

Release history Release notifications | RSS feed

0.11.1

2 files

0.11.0

2 files

0.10.1

2 files

0.10.0

2 files

0.9.2

2 files

0.9.1

2 files

0.9.0

2 files

This release

0.8.0 This release

2 files

0.7.0

2 files

0.6.0

2 files

0.5.0

2 files

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page