mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-15 17:48:49 +00:00
19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# poetry search
|
|
|
|
> Search for packages on a remote index.
|
|
> Note: PyPI no longer supports searching via the command-line, so this command may fail on the default repository.
|
|
> More information: <https://python-poetry.org/docs/cli/#search>.
|
|
|
|
- Search for a package:
|
|
|
|
`poetry search {{package_name}}`
|
|
|
|
- Search for multiple packages:
|
|
|
|
`poetry search {{package1 package2 ...}}`
|