mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Replace pipsi with pipx
pipsi page says, it is discontinued. Replacing with pipx
This commit is contained in:
parent
a42906b0e8
commit
31c60021fa
1 changed files with 6 additions and 6 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue