Replace pipsi with pipx

pipsi page says, it is discontinued. Replacing with pipx
This commit is contained in:
tlahn 2021-03-07 20:10:39 +01:00 committed by GitHub
parent a42906b0e8
commit 31c60021fa
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
~~~~~~~~~~~~~~~~~~~
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
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::
pipsi upgrade vdirsyncer
pipx upgrade vdirsyncer
If you're done with vdirsyncer, you can do::
pipsi uninstall vdirsyncer
pipx uninstall vdirsyncer
and vdirsyncer will be uninstalled, including its dependencies.
.. _virtualenv: https://virtualenv.readthedocs.io/
.. _pipsi: https://github.com/mitsuhiko/pipsi
.. _pipx: https://github.com/pipxproject/pipx