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
16 changes: 15 additions & 1 deletion examples/downward/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,21 @@

Install `uv`:

curl -LsSf https://astral.sh/uv/install.sh | sh
First, check if `uv` is currently installed:

which uv

If the previous command did not return a path, then install `uv` by using the package from your Linux distribution.
If `uv` is not packaged for your distribution, you do not have superuser rights or you are in a non-Linux OS, you
can install it for your user with pip:

pip install --user uv

You can also check that the official installation script is safe and install it mamnually. Take into account that
blindly executing a script is a potential security issue easy to avoid, and that official URLs can also be hacked.

wget https://astral.sh/uv/install.sh
sh install.sh

## Create a new project (pyproject.toml, .python-version, uv.lock)

Expand Down