itskreisler / discord-bot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributors Forks Stargazers Issues MIT License LinkedIn

Discord-Bot-Template

A simple discord bot template to get you started with your own bot!

Setup Termux & Terminal

# update and upgrade
pkg update && pkg upgrade
# install git, binutils and python
pkg install git binutils python
# create venv
python -m venv venv # | Window
virtualenv pyp-env # | Window | Linux | Mac
# activating pyp-env | Window
pyp-env\Scripts\activate
# activating pyp-env | Linux | Mac
source pyp-env/bin/activate
# install requirements
pip install -r requirements.txt
# run the bot
python main.py # | Window
python3 main.py # | Linux
# opcional update pip
python.exe -m pip install --upgrade pip

About

License:MIT License


Languages

Language:Python 100.0%