Difference between revisions of "How to install .NET on Raspberry Pi"

From OPC Labs Knowledge Base
Jump to navigation Jump to search
(Created page with " Raspberry Pi OS .NET Core 3.1 Using procedure from https://docs.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#manual-install # Start Web browser. Visit ht...")
 
Line 7: Line 7:
 
Using procedure from https://docs.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#manual-install
 
Using procedure from https://docs.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#manual-install
  
# Start Web browser. Visit https://dotnet.microsoft.com/download/dotnet-core/3.1 , pick the URL that you need and copy it to clipboard. Look under OS: Linux, Binaries: Arm32. For example, for .NET Core 3.1.11, the URL is https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-3.1.11-linux-arm32-binaries .
+
# Start Web browser.  
# Bash:  
+
# In the Web browser:
## wget https://dotnet.microsoft.com/download/dotnet-core/thank-you/runtime-3.1.11-linux-arm32-binaries
+
## Visit https://dotnet.microsoft.com/download/dotnet-core/3.1 .
 +
## Click on the download that you need (look under OS: Linux, Binaries: Arm32).
 +
## On the download page, copy the direct URL to the clipboard (ignore or cancel the automatic dowload). For example, for .NET Core 3.1.11, the direct URL is https://download.visualstudio.microsoft.com/download/pr/a119100f-e7b3-4c30-a91a-d6ce6b02b51a/196c932070dd023726664a9789e4dc83/dotnet-runtime-3.1.11-linux-arm.tar.gz .
 +
# Start Bash.
 +
# In Bash:  
 +
## {{Style=keyboard|wget https://download.visualstudio.microsoft.com/download/pr/a119100f-e7b3-4c30-a91a-d6ce6b02b51a/196c932070dd023726664a9789e4dc83/dotnet-runtime-3.1.11-linux-arm.tar.gz}}
 +
## {{Style=keyboard|mkdir -p "$HOME/dotnet" && tar zxf dotnet-runtime-3.1.11-linux-arm.tar.gz -C "$HOME/dotnet"}}

Revision as of 15:23, 26 January 2021


Raspberry Pi OS

.NET Core 3.1

Using procedure from https://docs.microsoft.com/en-us/dotnet/core/install/linux-scripted-manual#manual-install

  1. Start Web browser.
  2. In the Web browser:
    1. Visit https://dotnet.microsoft.com/download/dotnet-core/3.1 .
    2. Click on the download that you need (look under OS: Linux, Binaries: Arm32).
    3. On the download page, copy the direct URL to the clipboard (ignore or cancel the automatic dowload). For example, for .NET Core 3.1.11, the direct URL is https://download.visualstudio.microsoft.com/download/pr/a119100f-e7b3-4c30-a91a-d6ce6b02b51a/196c932070dd023726664a9789e4dc83/dotnet-runtime-3.1.11-linux-arm.tar.gz .
  3. Start Bash.
  4. In Bash:
    1. wget https://download.visualstudio.microsoft.com/download/pr/a119100f-e7b3-4c30-a91a-d6ce6b02b51a/196c932070dd023726664a9789e4dc83/dotnet-runtime-3.1.11-linux-arm.tar.gz
    2. mkdir -p "$HOME/dotnet" && tar zxf dotnet-runtime-3.1.11-linux-arm.tar.gz -C "$HOME/dotnet"