Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

how to install Dotnet SDK on Fedora using dotnet_install.sh

cuz I always forget how to.

Dependencies

  • curl

How to do it

1. Download the bash script.

curl -fsSL https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh

2. Make script executable.

chmod +x dotnet-install.sh

3. Run the script

./dotnet-install.sh --version {version_here}

Dotnet should install to ~/.dotnet directory.

4. Add Dotnet to PATH

Open the config file:

nano ~/.bashrc

Add these lines to the end of it:

export DOTNET_ROOT="$HOME/.dotnet"
export PATH="$HOME/.dotnet:$PATH"

5. Verify if you have installed it correctly.

dotnet --version

it should result in:

{version_here}

About

guide to installing dotnet sdk on fedora cuz i always forget how to do it

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages