4
4
Installation
5
5
############
6
6
7
- Python 3.7 or newer is required for ``tsinfer ``. Any Unix-like platform should
7
+ Python 3.9 or newer is required for ``tsinfer ``. Any Unix-like platform should
8
8
work (``tsinfer `` is tested on Linux, OS X, and Windows).
9
9
10
10
***************
@@ -26,14 +26,14 @@ Installing from source
26
26
27
27
It is also possible to install from source via ``pip `` (although see the issues below):
28
28
29
- $ python3 -m pip install tsinfer --user
29
+ $ python -m pip install tsinfer --user
30
30
31
31
which will install ``tsinfer `` to the Python installation corresponding to your
32
- ``python3 `` executable. All requirements should be installed automatically.
32
+ ``python `` executable. All requirements should be installed automatically.
33
33
34
34
To run the command line interface to ``tsinfer `` you can then use::
35
35
36
- $ python3 -m tsinfer --help
36
+ $ python -m tsinfer --help
37
37
38
38
39
39
If your ``PATH `` is set up to point at the corresponding ``bin `` directory
@@ -44,9 +44,9 @@ you can also use the ``tsinfer`` executable directly::
44
44
You may wish to install into a virtual environment
45
45
first using `venv <https://docs.python.org/3/library/venv.html >`_::
46
46
47
- $ python3 -m venv tsinfer-venv
47
+ $ python -m venv tsinfer-venv
48
48
$ source tsinfer-venv/bin/activate
49
- (tsinfer-venv) $ python3 -m pip install tsinfer
49
+ (tsinfer-venv) $ python -m pip install tsinfer
50
50
(tsinfer-venv) $ tsinfer --help
51
51
52
52
****************
0 commit comments