Merge pull request #870 from tlahn/patch-1

Replace pipsi with pipx
This commit is contained in:
Hugo Barrera 2021-03-07 19:40:19 +00:00 committed by GitHub
commit 6897995080
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,22 +95,22 @@ This method has two advantages:
The clean, easy way The clean, easy way
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
pipsi_ is a new package manager for Python-based software that automatically pipx_ is a new package manager for Python-based software that automatically
sets up a virtualenv for each program you install. Assuming you have it sets up a virtualenv for each program you install. Assuming you have it
installed on your operating system, you can do:: installed on your operating system, you can do::
pipsi install --python python3 vdirsyncer pipx install vdirsyncer
and ``.local/bin/vdirsyncer`` will be your new vdirsyncer installation. To and ``~/.local/pipx/venvs/vdirsyncer`` will be your new vdirsyncer installation. To
update vdirsyncer to the latest version:: update vdirsyncer to the latest version::
pipsi upgrade vdirsyncer pipx upgrade vdirsyncer
If you're done with vdirsyncer, you can do:: If you're done with vdirsyncer, you can do::
pipsi uninstall vdirsyncer pipx uninstall vdirsyncer
and vdirsyncer will be uninstalled, including its dependencies. and vdirsyncer will be uninstalled, including its dependencies.
.. _virtualenv: https://virtualenv.readthedocs.io/ .. _virtualenv: https://virtualenv.readthedocs.io/
.. _pipsi: https://github.com/mitsuhiko/pipsi .. _pipx: https://github.com/pipxproject/pipx