Installation¶
Requirements¶
Python 3.8 or higher
pip package manager
Installing fbchat-muqit¶
Using pip¶
The easiest way to install fbchat-muqit:
pip install fbchat-muqit
For the latest development version:
pip install git+https://github.com/togashigreat/fbchat-muqit.git
Using uv¶
If you’re using uv for package management:
uv pip install fbchat-muqit
Virtual Environment¶
It’s recommended to use a virtual environment:
# Create virtual environment
python -m venv venv
# Activate it
# On Linux/Mac:
source venv/bin/activate
# On Windows:
venv\Scripts\activate
# Install fbchat-muqit
pip install fbchat-muqit
Verifying Installation¶
import fbchat_muqit
print(fbchat_muqit.__version__)