Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 1.71 KB

TROUBLE-SHOOTING.md

File metadata and controls

48 lines (30 loc) · 1.71 KB

Various challenges you may encounter when, trying to get your VSCode env setup

  1. The gRPC fails to rebuild issue

According to the IBM Blockchain Platform Extension updated to v1.0.20 Release date: February 20th 2020

  • We’re still waiting for the gRPC v1.25.0 binaries to be published so you may be affected by this issue, where gRPC fails to rebuild when using VS Code 1.40.x.

    Please see this comment for a workaround.

2. Failed to execute command "/bin/sh"

Docker not running

Solution check Docker is installed and running properly.

Quick test run docker's hello world program:

docker run hello-world

To install sign up / login to DockerHub

Mac users - Signup for a Docker Hub account to download docker desktop download docker desktop

3. git fails to work - xcrun: error

This is probably seen only on a mac os, probably an os upgrade (e.g. Mojave to Catalina ) issue you will see on using git commands:

git status
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), 
missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun

dependancies on xcode!

xcode-select --install

You will be prompted to install command line developer tools!

still having trouble with this one, read more here