Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wvanheemstra authored Nov 21, 2024
1 parent f5500aa commit 67bf8e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ Getting your code up and running on your own system.
# Version: 0.0.1 # it takes this from src/threagile_builder/__about__.py
# ...
(threagile-builder) $ python -c "import sys;print(sys.executable)" # optional, see where your environment's python is located
(threagile-builder) $ exit # type `exit` to leave the environment
$ hatch run pip install --upgrade pip # optional, the `run` command allows you to execute commands in an environment as if you had already entered it.
$ hatch run pip install -r requirements.txt # pipx won't do this
$ hatch run python -m setuptools_scm # optional, display the version of our package and perform any side-effects like writing to a file. (here: `_version.py`)
$ hatch run python src/threagile_builder/app.py # starts the app
(threagile-builder) $ pip install --upgrade pip # optional, the `run` command allows you to execute commands in an environment as if you had already entered it.
(threagile-builder) $ pip install -r requirements.txt # pipx won't do this
(threagile-builder) $ python -m setuptools_scm # optional, display the version of our package and perform any side-effects like writing to a file. (here: `_version.py`)
(threagile-builder) $ python src/threagile_builder/app.py # starts the app
(threagile-builder) $ exit # optional, type `exit` to leave the environment
```
2. Software dependencies
3. Latest releases
Expand Down

0 comments on commit 67bf8e0

Please sign in to comment.