Guest User

Untitled

a guest
Jul 22nd, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. - Python 2.7.x should be installed, and available in path. To verify, click start, run, type python and it should open it). If not, download from https://python.org/downloads/.
  2. - FFMPEG must be installed properly, instructions are on http://adaptivesamples.com/how-to-install-ffmpeg-on-windows/
  3. - If you have Visual Studio 2013 or 2015, make sure C++ Build Tools are installed. Simply create a new Empty C++ project. If prompted to install the C++ files, do so.
  4. - Alternatively, you can install only the Visual C++ Build Tools as a standalone: http://landinghub.visualstudio.com/visual-cpp-build-tools
  5. - Some users have reported that installing VLC helps with codec dependencies, so try that.
  6.  
  7. Run the following commands to re-install discord.js
  8.  
  9. npm cache clean (to remove any cached versions of discord or its dependencies)
  10. npm install -g npm (this will update NPM, and fixed it for some users!)
  11. npm install --save --msvs_version=2015 discord.js (change version to 2013 if using VS2013)
  12.  
  13. If any errors show, attempt to re-install node-opus manually:
  14.  
  15. npm cache clean
  16. npm install node-opus
Add Comment
Please, Sign In to add comment