'spawn C:\Windows\system32\cmd.exe;C:\Program Files\Git\bin ENOENT

hope all is well.

I am trying to run the wizard from https://github.com/0xProject/0x-launch-kit. I have successfully downloaded Node.js, Yarn, Docker and npx but after running the following command npx @0x/launch-kit-wizard && docker-compose up

I am receiving spawn C:\Windows\system32\cmd.exe;C:\Program Files\Git\bin ENOENT .

I have already gone to computer>properties>Advance System Settings>Environment Variables> and added the required C:\Windows\system32\cmd.exe;C:\Program Files\Git\bin to path and ComSpec but i am getting still the same error.

Would really appreciate some help.

Thank you



Solution 1:[1]

I had a similar issue, and it turns out that one of my container images was connecting to an old path on my local machine, once I corrected that, everything started working again.

Another tip is to first ensure your docker is updated to the latest version.

Secondly, don't run the entire container at once, but rather run each of its images (sub containers) one by one, till they are all running to determine which image is breaking, which is how I found my offending image, hope this helps.

example of Docker Error 1

example of Docker Error 2

start each of the container parts one by one, to determine where the issue is

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Rishi Bhachu