From b1fd6c57eb13cf1596ed0a378a26eae96f92ae77 Mon Sep 17 00:00:00 2001 From: Gary Yendell Date: Wed, 11 Jun 2025 15:33:19 +0100 Subject: [PATCH] Update version check in installation tutorial --- docs/tutorials/installation.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/installation.md b/docs/tutorials/installation.md index 6aa58f6e2..8e3ea0d18 100644 --- a/docs/tutorials/installation.md +++ b/docs/tutorials/installation.md @@ -34,9 +34,10 @@ from github: $ python3 -m pip install git+https://github.com/DiamondLightSource/FastCS.git ``` -The library should now be installed and the commandline interface on your path. -You can check the version that has been installed by typing: +The library should now be installed. There is no application entrypoint, but the library can be imported: ``` -$ FastCS --version +$ python3 +>>> from fastcs import __version__ +>>> fastcs.__version__ # doctest: +SKIP ```