Skip to content

Commit 6897995

Browse files
author
Hugo Barrera
authored
Merge pull request #870 from tlahn/patch-1
Replace pipsi with pipx
2 parents a42906b + 31c6002 commit 6897995

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/installation.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,22 +95,22 @@ This method has two advantages:
9595
The clean, easy way
9696
~~~~~~~~~~~~~~~~~~~
9797

98-
pipsi_ is a new package manager for Python-based software that automatically
98+
pipx_ is a new package manager for Python-based software that automatically
9999
sets up a virtualenv for each program you install. Assuming you have it
100100
installed on your operating system, you can do::
101101

102-
pipsi install --python python3 vdirsyncer
102+
pipx install vdirsyncer
103103

104-
and ``.local/bin/vdirsyncer`` will be your new vdirsyncer installation. To
104+
and ``~/.local/pipx/venvs/vdirsyncer`` will be your new vdirsyncer installation. To
105105
update vdirsyncer to the latest version::
106106

107-
pipsi upgrade vdirsyncer
107+
pipx upgrade vdirsyncer
108108

109109
If you're done with vdirsyncer, you can do::
110110

111-
pipsi uninstall vdirsyncer
111+
pipx uninstall vdirsyncer
112112

113113
and vdirsyncer will be uninstalled, including its dependencies.
114114

115115
.. _virtualenv: https://virtualenv.readthedocs.io/
116-
.. _pipsi: https://github.com/mitsuhiko/pipsi
116+
.. _pipx: https://github.com/pipxproject/pipx

0 commit comments

Comments
 (0)