BV Winoya
BV Winoya

Reputation: 345

'abp' is not recognized as an internal or external command,

I just started exploring the Abp features, I created a sample project from their website and able to build the project successfully. But When I run the dbmigrator project getting an exception, Below is the screenshot of the error,

enter image description here

I followed this article to run the app

https://docs.abp.io/en/abp/latest/Getting-Started-Running-Solution?UI=MVC&DB=EF&Tiered=No

Do we need to install any additional package to make it work?

Any help would be appreciated.

Upvotes: 1

Views: 4574

Answers (3)

Ongun23
Ongun23

Reputation: 75

My antivirus deleted the abp.exe and I restored it from the quarantine

Upvotes: 0

Aykut Atmaca
Aykut Atmaca

Reputation: 41

If you sure about abp.cli is already installed, you can run the command using by abp.exe file path like this:

C:\Users\username\.dotnet\tools\abp.exe new Acme.BookStore

Upvotes: 0

Anto Subash
Anto Subash

Reputation: 3215

I think you are missing the abp cli.

dotnet tool install -g Volo.Abp.Cli

Just install it using the above command and try again in a new prompt. it should fix the issue.

Upvotes: 20

Related Questions