Dispy Documentation
  • Documentation
    • Getting started
      • Installation
      • Create a bot
    • Examples
  • Informations
    • Contribute
      • Adding an API function
    • Changelogs
      • 0.1.1
      • 0.1.0.7
      • 0.1.0.6
      • 0.1.0.5
      • 0.1.0
      • 0.0.1
    • Roadmap
    • Support
Powered by GitBook
On this page
  • Installation
  • Prerequisites
  • Installation
  • Virtual Environments (for nerds)
  1. Documentation
  2. Getting started

Installation

Last updated 4 months ago


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 file on the github repository.

Installation

pip install dispy-bot
pip3 install dispy-bot

Maybe 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-env

Activating the environment

bot-env\Scripts\activate.bat

Importing the library

pip install dispy-bot

And 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-env

Activating the environment

source bot-env/bin/activate

Importing the library

pip3 install dispy-bot

And voilà, you have a working (i think) env to work with dispy! you can simply do deactivate when you have finished.

requirement