# Installation The easiest way to install TSBot is to use `pip`. ```shell # Linux/macOS python3 -m pip install tsbot # Windows py -3 -m pip install tsbot ``` ## Virtual environments It's recommended to use virtual environments when creating your bots. ```shell # Linux/macOS python3 -m venv venv . venv/bin/activate pip install tsbot # Windows py -m venv venv .\venv\Scripts\activate pip install tsbot ``` ## Installing latests from GitHub If you want to be on top of new update/features, and cannot wait for new release on PyPI, You can install latest version off of GitHub repo. ```shell pip install git+https://github.com/jykob/TSBot ```