mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 21:42:08 +02:00
32 lines
545 B
Markdown
32 lines
545 B
Markdown
# pixi
|
|
|
|
> Developer Workflow and Environment Management for projects.
|
|
> More information: <https://pixi.sh>.
|
|
|
|
- Initialize a new project:
|
|
|
|
`pixi init {{path/to/project}}`
|
|
|
|
- Add project dependencies:
|
|
|
|
`pixi add {{dependency1 dependency2 ...}}`
|
|
|
|
- Start a pixi shell in the project environment:
|
|
|
|
`pixi shell`
|
|
|
|
- Run a task in the project environment:
|
|
|
|
`pixi run {{task}}`
|
|
|
|
- Manage tasks in the project environment:
|
|
|
|
`pixi task {{command}}`
|
|
|
|
- Print the help message:
|
|
|
|
`pixi {{command}} --help`
|
|
|
|
- Clean environment and task cache:
|
|
|
|
`pixi clean`
|