Installation
PyEventBT is published on PyPI and can be easily installed with a single command.
Quick Install
Section titled “Quick Install”pip install pyeventbtPrerequisites
Section titled “Prerequisites”PyEventBT requires Python 3.10 or higher.
Recommended Setup
Section titled “Recommended Setup”We recommend using a virtual environment to avoid conflicts with other packages.
-
Create a virtual environment:
Terminal window conda create -n pyeventbt python=3.12Terminal window # Creates a virtual environment using Python 3.12python3.12 -m venv venv -
Activate the environment:
Terminal window conda activate pyeventbtTerminal window source venv/bin/activateTerminal window .\venv\Scripts\activate -
Install PyEventBT from PyPI:
Terminal window pip install pyeventbt
Verify Installation
Section titled “Verify Installation”You can verify that PyEventBT is correctly installed by importing it in Python:
import pyeventbtprint(pyeventbt.__version__)Source Code & Contributing
Section titled “Source Code & Contributing”If you want to contribute or see the source code, check out the project on GitHub. We’d love your help!