diff options
Diffstat (limited to 'Master/texmf-dist/scripts/pythontex/pythontex.py')
-rwxr-xr-x | Master/texmf-dist/scripts/pythontex/pythontex.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/pythontex/pythontex.py b/Master/texmf-dist/scripts/pythontex/pythontex.py index 1be1f6d70ea..68814f54884 100755 --- a/Master/texmf-dist/scripts/pythontex/pythontex.py +++ b/Master/texmf-dist/scripts/pythontex/pythontex.py @@ -4,11 +4,19 @@ ''' This is the PythonTeX wrapper script. It automatically detects the version of Python, and then imports the correct code from pythontex2.py or -pythontex3.py. +pythontex3.py. It is intended for use with the default Python installation +on your system. If you wish to use a different version of Python, you could +launch pythontex2.py or pythontex3.py directly. You should also consider the +command-line option `--interpreter`. This allows you to specify the command +that is actually used to execute the code from your LaTeX documents. Except +for Python console content, it doesn't matter which version of Python is used +to launch pythontex.py; pythontex.py just manages the execution of code from +your LaTeX document. The interpreter setting is what determines the version +under which your code is actually executed. Licensed under the BSD 3-Clause License: -Copyright (c) 2012-2013, Geoffrey M. Poore +Copyright (c) 2012-2014, Geoffrey M. Poore All rights reserved. |