Problem encountered on https://dotnet.microsoft.com/learn/dotnet/hello-world-tutorial/install
Operating System: macos
I have lates MacOS - Catalina. Installed dotnet core as per documentation and still do not see dotnet command. I need to use azcopy command which required this .net core.
Could you please help?
It should work. Can you add step-by-step details on how you're installing it?
If you use the dot.net installer and have a customized bash profile or similar script, you may be hitting https://github.com/dotnet/core-setup/issues/6521. In that case you can fix the profile script or get /usr/local/share/dotnet/dotnet into PATH manually.
Exactly, I have customized .zshrc and after adding path it worked.
export PATH=$PATH:/usr/local/share/dotnet
Most helpful comment
If you use the dot.net installer and have a customized bash profile or similar script, you may be hitting https://github.com/dotnet/core-setup/issues/6521. In that case you can fix the profile script or get
/usr/local/share/dotnet/dotnetintoPATHmanually.