-1

I try to repeat the actions from here https://www.youtube.com/watch?v=yiPnkBEHqf0 and I have complication in time 0:50 where author opens Terminal in vsCode and works through bash.

I just have windows powershell instead bash (look the picture).

enter image description here

May be I need to set up vsCode before that or for windows I need do anything else? Thank you for helps!

I found one way to decide my problem here How to add multiple terminals in VS Code? I installed git bash by instruction but I have another problem (picture), when I write like in video 0:50

enter image description here

1 Answers1

0

First install Node

Go to the website and install it:

https://nodejs.org/en/

You shouldn't use Git Bash.

Once you have installed Node, which you can check by running this command from powershell:

node -v

If you get a version number, then you have installed successfully. You may need to reboot your computer after install.

Install Clasp

https://github.com/google/clasp

By running this command:

npm install -g @google/clasp

Check the install by typing this command:

clasp

Which should give you some reference material.

Connect to your Apps Script Project

Once you have installed clasp, login by typing

clasp login

and then get your script ID and go to the folder you want to download your script to and:

clasp clone [SCRIPT ID]

More instructions are on the sites linked.

iansedano
  • 6,169
  • 2
  • 12
  • 24