简体   繁体   中英

$ is not recognized as an internal or external command

I am trying to develop my own app using Android Studio and Google Calendar API.

The Google page says this:

In your working directory, run the following commands:

 $ gradle init --type basic $ mkdir -p src/main/java src/main/resources 

When I try to put that into the command line, it comes back with:

'$' is not recognized as an internal or external command, operable program or batch file.

Am I putting this in the wrong place?


I didn't even realize they were assuming that people are using Linux. I have a Windows machine. I have tried all the suggestions and am not getting anywhere so far, so I'm not sure where to go from here.

Not a problem at all! The $ means the following command needs to be run in the terminal (in this case, a Bash terminal). So try opening one on your machine and cd'ing into the project. Then run this:

gradle init --type basic && mkdir -p src/main/java src/main/resources

EDIT: Changed it to make use of the && operator

$ is shorthand in documentation for your command prompt and the lines mean you've got two things to enter at subsequent prompts:

  1. gradle init --type basic and
  2. mkdir -p src/main/java src/main/resources

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM