Skip to content
Merged
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
7 changes: 4 additions & 3 deletions docs/tutorials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Loading