diff --git a/README.md b/README.md index b199ff2..5189865 100644 --- a/README.md +++ b/README.md @@ -46,17 +46,15 @@ Contributions welcome - please refer to [CONTRIBUTING.MD](https://github.com/sem --- ## Installation -`pyrtcm` is compatible with Python >=3.8 and has no third-party library dependencies. - -In the following, `python3` & `pip` refer to the Python 3 executables. You may need to type -`python` or `pip3`, depending on your particular environment. - ![Python version](https://img.shields.io/pypi/pyversions/pyrtcm.svg?style=flat) [![PyPI version](https://img.shields.io/pypi/v/pyrtcm.svg?style=flat)](https://pypi.org/project/pyrtcm/) ![PyPI downloads](https://img.shields.io/pypi/dm/pyrtcm.svg?style=flat) -The recommended way to install the latest version of `pyrtcm` is with -[pip](http://pypi.python.org/pypi/pip/): +`pyrtcm` is compatible with Python 3.8 - 3.13 and has no third-party library dependencies. + +In the following, `python3` & `pip` refer to the Python 3 executables. You may need to substitute `python` for `python3`, depending on your particular environment (*on Windows it's generally `python`*). + +The recommended way to install the latest version of `pyrtcm` is with [pip](http://pypi.python.org/pypi/pip/): ```shell python3 -m pip install --upgrade pyrtcm @@ -68,7 +66,7 @@ If required, `pyrtcm` can also be installed into a virtual environment, e.g.: python3 -m pip install --user --upgrade virtualenv python3 -m virtualenv env source env/bin/activate (or env\Scripts\activate on Windows) -(env) python3 -m pip install --upgrade pyrtcm +python3 -m pip install --upgrade pyrtcm ... deactivate ```