.Net Core SDK is not able to install it in Ubuntu 16.04
See original GitHub issueSteps to reproduce
I followed the instructions given in the next microsoft web page: https://www.microsoft.com/net/download/linux-package-manager/ubuntu16-04/sdk-current
- curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
- sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
- sudo sh -c ‘echo “deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-xenial-prod xenial main” > /etc/apt/sources.list.d/dotnetdev.list’
- sudo apt-get install apt-transport-https
- sudo apt-get update
- sudo apt-get install dotnet-sdk-2.1.101
Expected behavior
Successful .Net Core SDK
Actual behavior
After running the next command: sudo apt-get install dotnet-sdk-2.1.101 I get the next messages: Reading package lists… Done Building dependency tree Reading state information… Done E: Unable to locate package dotnet-sdk-2.1.101 E: Couldn’t find any package by glob ‘dotnet-sdk-2.1.101’ E: Couldn’t find any package by regrex ‘dotnet-sdk-2.1.101’
Environment data
dotnet --info
output:
dotnet: command not found
Issue Analytics
- State:
- Created 5 years ago
- Comments:10 (5 by maintainers)
Top Results From Across the Web
Install .NET SDK or .NET Runtime on Ubuntu 16.04
This article discusses how to install .NET on Ubuntu 16.04; Only .NET 6 is supported. Install the SDK (which includes the runtime) if...
Read more >Unable to install .NET Core on Ubuntu 16.04 based ...
Unable to install .NET Core on Ubuntu 16.04 based on Microsoft Instructions · 1. Please run sudo apt-get install -f , then sudo...
Read more >Install the .NET SDK or the .NET Runtime on Ubuntu
I want to create a .NET app ... Use the same package sources for the SDK as you use for the runtime. For...
Read more >How to install dotnet SDK on Ubuntu 16.04 LTS
Try running this command on your terminal: wget -q packages-microsoft-prod.deb ...
Read more >Solution: (Error)Unable to Correct problems, You have held ...
Recently, I have been using Linux(Ubuntu) machine on my virtual box quite a bit and as Microsoft.NET Developer I want to install .NET...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
.NET Core is not supported on i386 platforms: https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0-supported-os.md#linux. It only works on x86_64 (aka amd64 or x64).
oohh… that’s sad… then we can close it.