Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jun 28, 2024
1 parent 47b8553 commit 5880807
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,22 @@ If you have Python installed, you can install ChipStream from PyPI
pip install chipstream[cli,gui]


Since version 0.6.0, you can also make use of torch-based segmentation
models.

::

pip install chipstream[cli,gui,torch]

If you have a CUDA-compatible GPU and your Python installation cannot access the
GPU (`torch.cuda.is_available()` is `False`), installing torch via the pytorch
index URL might help:

::

pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121


Execution
---------
If you have installed ChipStream from PyPI, you can start it with
Expand Down
2 changes: 1 addition & 1 deletion build-recipes/win_ChipStream.spec
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ gui_exe = EXE(
strip=False,
upx=False,
icon=NAME + ".ico",
console=bool(chipstream.__version__.count("post")))
console=bool(chipstream.__version__.count("post") or chipstream.__version__.count("a")))

coll = COLLECT(
cli_exe,
Expand Down

0 comments on commit 5880807

Please sign in to comment.