developer-docs icon indicating copy to clipboard operation
developer-docs copied to clipboard

Install Dependencies `event-loop-stats` and `isolated-vm` on Windows

Open ErmakovEv opened this issue 1 year ago • 0 comments

Issue Description: When attempting to set up the development environment locally on a laptop with Windows 10 Pro, I encountered an issue with installing the event-loop-stats and isolated-vm packages using Yarn. This prevented the project from running with the yarn dsv and yarn dev commands.

Steps to Reproduce:

  1. Clone the repository to a local machine with Windows 10.
  2. Run the command yarn install to install dependencies.
  3. Ensure that the necessary system build dependencies are installed and active.

Fix: To resolve the issue, I had to install build tools and other dependencies. I performed the following steps (on Linux, but similar steps may be required on Windows via MinGW or other tools):

sudo apt install build-essential
sudo apt install python3
sudo apt install python3-pip
sudo pip3 install --upgrade virtualenv
sudo apt install nodejs-dev
sudo apt install libssl1.0-dev

After this, I was able to successfully build and run the project.

Request: It would be helpful to include the necessary steps for installing dependencies for various operating systems (especially Windows) in the documentation. This will help future developers avoid similar issues.


Thank you!


I hope this helps!

ErmakovEv avatar Jun 05 '24 18:06 ErmakovEv