6

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

Bemz
  • 129
  • 1
  • 16
  • `C:\Windows\system32\cmd.exe` is not a searchable path. It's a program file. –  Jul 12 '20 at 04:23
  • The value of `%ComSpec%` is generally supposed to be a `C:\Windows\System32\cmd.exe`, not a semicolon delimited list of file and directory paths. BTW, to clarify the previous comment, please remove `C:\Windows\system32\cmd.exe` from your `%PATH%` variable value. – Compo Jul 12 '20 at 10:26
  • Thank you Compo !! That actually worked :) – Bemz Jul 12 '20 at 22:45

2 Answers2

7

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

Rishi Bhachu
  • 162
  • 2
  • 10
0

Run each sub container images one by one.

Ahmedakhtar11
  • 1,076
  • 11
  • 7