Last active
January 23, 2023 06:12
-
-
Save j4gd33p/be92ab64f7c0528c953ec593579aa83d to your computer and use it in GitHub Desktop.
Step by step guide to install Medisoup server on windows machine (> 10)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Installation required: | |
| Node version >= v12.0.0 | |
| Python version >= 3.6 | |
| GNU make (https://sourceforge.net/projects/mingw/) | |
| MOST IMPORTANT THING: THE PATH WHERE PROJECT IS STORED(where you'll do npm i mediasoup) SHOULD NOT HAVE WHITESPACES IN IT | |
| EXAMPLE: INCORRECT: C:\Some Project\mediasoupDemo | |
| CORRECT: C:\SomeProject\mediasoupDemo | |
| - Install mingw and add all Basic & msys packages and append the path of folder containing make to the Windows Path environment variable (e.g. C:\MinGW\msys\1.0\bin) | |
| - Make sure to have ISRG Root X1 certificate installed, or you will get errors while downloading OpenSSL | |
| (whose website is secured with Let's Encrypt), you can import it from: | |
| https://letsencrypt.org/certs/isrgrootx1.der (install to Local computer) | |
| - Restart the system | |
| - Search for “App execution aliases” in system settings and disable everything Python-related from there. | |
| - Install Visual studio build tools(latest version) | |
| - Use command prompt for installation | |
| - run vcvars64 in terminal. If not running then open the following file and run it: | |
| "C:\Program Files (x86)\Microsoft Visual Studio\<VS_CODE_VERSION>(in my case 2017)\Community\VC\Auxiliary\Build\vcvarsall.bat" | |
| Now, we are ready to do : npm i mediasoup. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment