Welcome to the FalconZ installation guide. Follow the steps below to install FalconZ on your preferred operating system.
Before proceeding, ensure you have Python installed. FalconZ requires Python 3.6 or newer. You can check your Python version by running:
python --version
or
python3 --version
It's highly recommended to use a virtual environment. This keeps your main environment clean and manages dependencies specific to FalconZ without conflicts.
Linux/Mac:
python3 -m venv falconz_env source falconz_env/bin/activate
Windows:
python -m venv falconz_env .\falconz_env\Scripts\activate
Once activated, your command prompt or terminal will prepend with (falconz_env), indicating the virtual environment is active.
With your virtual environment active, install FalconZ using pip:
pip install falconz
After you're done, you can deactivate the virtual environment:
deactivate
For any installation issues or further assistance, refer to the documentation or contact us.