DEV Community

Manmeet
Manmeet

Posted on • Updated on

Task 2: Install the sublime text 3,.netcore 2.x, git in Ubuntu

I followed the links below to install the softwares/modules:

  1. sublime text 3: http://tipsonubuntu.com/2017/05/30/install-sublime-text-3-ubuntu-16-04-official-way/
    There were some modifications required in the commands in step 1, which were basically changing the path of the file as per its location saved in my system.

  2. netcore 2.x: https://dotnet.microsoft.com/download/linux-package-manager/ubuntu18-10/sdk-current
    While installing .netcore2.x I encountered an issue. So when I follow the steps from the link I shared, I get an error(Unable to locate package dotnet-sdk-2.2) on the last step.
    To solve this problem I manually downloaded and installed the binaries following the steps on this link:https://dotnet.microsoft.com/download/thank-you/dotnet-sdk-2.2.203-linux-x64-binaries
    And in step 2, to verify the installation I cannot use command dotnet, instead I have to use dotnet-sdk.dotnet because when .NET Core is installed using the Snap package, the default .NET Core command is,dotnet-sdk.dotnet as opposed to just dotnet. And to install snap I also configured snap first

  3. git (just the command line, no desktop/UI) https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-18-04-quickstart

Click on the link below for the next post in this series:
https://dev.to/mechatrona/task-3-hello-world-in-c-using-the-command-line-in-linux-2011

Click on the link below for the previous post in this series:
https://dev.to/mechatrona/task-1-install-ubuntu-on-windows-laptop-2p8

Top comments (0)