Installation
This is the introduction guide on how to install and import dispy for your own project.
Installation
Prerequisites
Dispy will work with Python 3.12 or higher, it hasn't been tested with lower versions.
The required library's are in the requirement file on the github repository.
Installation
pip install dispy-botpip3 install dispy-botMaybe you will need to add sudo to your command.
Virtual Environments (for nerds)
I hate these shit, but here's how to do it for nerds lol.
For starter, please make sure you have python and pip updated & installed, i will not explain it here.
Creating the environment
python -m venv bot-envActivating the environment
bot-env\Scripts\activate.batImporting the library
pip install dispy-botAnd voilà, you have a working (i think) env to work with dispy! you can simply do deactivate when you have finished.
Creating the environment
python3 -m venv bot-envActivating the environment
source bot-env/bin/activateImporting the library
pip3 install dispy-botAnd voilà, you have a working (i think) env to work with dispy! you can simply do deactivate when you have finished.
Last updated