Skip to content

Commit

Permalink
Add installation details url for .net AL2
Browse files Browse the repository at this point in the history
  • Loading branch information
mchadalavada committed Mar 14, 2024
1 parent 374d076 commit 6a55087
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions Docs/docs/getstarted/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,18 @@ P currently uses the specific version of [.Net SDK 8.0](https://dotnet.microsoft


=== "Amazon Linux"

Installing .Net SDK on Amazon Linux 2 ([details](https://learn.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#scripted-install))

```shell
wget https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh
chmod +x dotnet-install.sh
./dotnet-install.sh -c 8.0 -i ~/.dotnet

# If using a bash shell, replace .zshrc_profile with .bash_profile in the below commands
echo 'PATH=$HOME/.dotnet:$HOME/.dotnet/tools:$PATH' >> ~/.zshrc_profile
echo 'export PATH' >> ~/.zshrc_profile
source ~/.zshrc_profile
# If using a bash shell, replace .zshrc with .bashrc in the below commands
echo 'PATH=$HOME/.dotnet:$HOME/.dotnet/tools:$PATH' >> ~/.zshrc
echo 'export PATH' >> ~/.zshrc
source ~/.zshrc

sudo mkdir /usr/share/dotnet/
sudo cp -r ~/.dotnet/* /usr/share/dotnet/
Expand Down

0 comments on commit 6a55087

Please sign in to comment.