Install Tabalyst
Ce contenu n’est pas encore disponible dans votre langue.
Tabalyst needs Python 3.11, 3.12, 3.13 or 3.14. It is installed from PyPI with
pip:
pip install tabalysttabalyst --versionThe second command prints the installed version, for example 0.2.1. The
sections below give the recommended steps for each system.
Windows
Section titled “Windows”-
Install Python 3.11 or later from python.org or the Microsoft Store. Then open a new PowerShell window and check the version:
Terminal window py --version -
Create a virtual environment in your working folder. It keeps Tabalyst separate from other Python projects:
Terminal window py -m venv .venv -
Install Tabalyst into this environment:
Terminal window .venv\Scripts\python.exe -m pip install tabalyst -
Check the installation:
Terminal window .venv\Scripts\python.exe -m tabalyst --version
To type tabalyst directly, activate the environment first in each new
PowerShell window:
.venv\Scripts\Activate.ps1tabalyst --versionIf PowerShell refuses to run Activate.ps1 because script execution is
disabled, keep using .venv\Scripts\python.exe -m tabalyst instead: it accepts
exactly the same commands.
macOS and Linux
Section titled “macOS and Linux”python3 -m venv .venvsource .venv/bin/activatepython -m pip install tabalysttabalyst --versionTo install the tabalyst command once for your user account instead, use
pipx:
pipx install tabalystUpgrade
Section titled “Upgrade”Run the install command again with --upgrade:
python -m pip install --upgrade tabalystOn Windows without an activated environment:
.venv\Scripts\python.exe -m pip install --upgrade tabalystTroubleshooting
Section titled “Troubleshooting”tabalystis not recognized: the environment is not activated, or the Python scripts folder is not on yourPATH. Usepython -m tabalyst(or.venv\Scripts\python.exe -m tabalyston Windows):python -m tabalystaccepts the same commands astabalyst.pyis not recognized on Windows: Python is not installed, or was installed without the launcher. Reinstall it from python.org.- Unsupported Python version:
piprefuses to install Tabalyst on Python 3.10 or earlier. Install a supported version and recreate the environment.