Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/guides/creating-command-line-tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ To just run the program without installing it permanently, use ``pipx run``, whi
$ pipx run --spec . greet --doctor

This syntax is a bit impractical, however; as the name of the entry point we defined above does not match the package name,
we need to state explicitly which executable script to run (even though there is only on in existence).
we need to state explicitly which executable script to run (even though there is only one in existence).

There is, however, a more practical solution to this problem, in the form of an entry point specific to ``pipx run``.
The same can be defined as follows in :file:`pyproject.toml`:
Expand Down