1#To install discord for python, use the below in Command Prompt (WINDOWS) or Terminal (MAC).
2pip install discord
3#After this, you can simply:
4import discord
5#In your python scripts.
1//To install discord for javascript, use the below in Command Prompt (WINDOWS) or Terminal (MAC).
2npm install discord.js
3//After this, you can simply:
4const Discord = require('discord.js');
5//In your javascript projects.
6//Please let me know if there is something incorrect here - I don't primarily use JS.