From 75dae280209de222f36cf7e49766947397fe9b21 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 27 Aug 2025 20:20:40 +0000 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index cdb0540..fd7bada 100644 --- a/README.md +++ b/README.md @@ -10,18 +10,18 @@ do an [editable install](https://pip.pypa.io/en/stable/topics/local-project-inst in a [virtual environment](https://docs.python.org/3/library/venv.html). ```sh -git clone https://git.squad51.us/jamie/ucsinfer.git -git submodule sync -python -m venv .venv -source .venv/bin/activate # or whatever command is approprate for your shell -pip install -e . +$ git clone https://git.squad51.us/jamie/ucsinfer.git +$ git submodule sync +$ python -m venv .venv +$ source .venv/bin/activate # or whatever command is approprate for your shell +$ pip install -e . ``` Or alternately, this module is packaged with the [poetry][py-poetry] dependency manager and can be run within a poetry virtualenv. ```sh -poetry run python -m ucsinfer +$ poetry run python -m ucsinfer ``` [py-poetry]: https://python-poetry.org/docs/1.8/cli/#run$0