Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 466 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 466 Bytes

Discord Bot Workshop

Get Started

  1. Install Python 3.6+
  2. Install pip
  3. Download the repository as a .zip or by cloning.
  4. Unzip the folder and open it with your favourite text editor.

macOS / Linux

$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install -r requirements.txt

Windows

$ python -m venv .venv
$ call .venv/Scripts/activate
$ pip install -r requirements.txt