I have installed Volo.Abp.Cli version 7.3.2 on my MacBook Pro using the dotnet tool install (update) -g Volo.Abp.Cli command. The tool installs successfully but when I try to run my application from Visual Studio it tells me that I must login to abp (license violation). When I attempt to login to abp (abp login <user>) it tells me that abp command cannot be found. How do I access the abp executable on a Mac? I need to be able to run suite and my applications on the Mac.
4 Answer(s)
-
0
Hi,
What's the result if you run the
dotnet tool list -g
command? -
0
Just 2 entries: redth.net.maui.check version 1.0.0 command maui-check volo.abp.cli version 7.3.2 command abp
entering abp in a terminal window produces the message: zsh: command not found: abp
-
0
Hi,
It looks like a problem with dotnet SDK. You may need to manually add the dotnet tool global folder to the PATH.
Check this: https://github.com/dotnet/sdk/issues/9415 https://stackoverflow.com/questions/69894735/zsh-command-not-found-dotnet-ef
-
0
Thank you. That worked.