Nano for Windows

0

Does anyone know how to install "nano" to use the command line in windows? I'm learning how to use command line to stop using GUI, but I'm having a hard time configuring the tools in windows.

    
asked by anonymous 01.07.2017 / 14:42

1 answer

2

Install Bash on windows:

The instructions here only apply to windwos 10 from Build 14316, if you are using a previous build, upgrade your system.

  • Access the windows 10 settings by clicking the start menu and then in settings;
  • While in Settings, click the "Update and Security" option;
  • On the next screen click on "For developers" and check the option "Developer mode"
  • Confirm ("Yes" button) activation of developer mode
  • Go to the taskbar search and type "Enable or disable resources, "and click the displayed result.
  • In the windows features window, check the "Windows Subsystem for Linux (Beta)
  • Close the window that appears and restart your computer
  • After rebooting, go to the search box on the taskbar, type: bash and click the displayed result.
  • Ready you're in the best "command line" available in the world of computing. : -)

    Install the nano:

    Probably the nano has already installed, if not, install it:

    $ sudo apt-get install nano
    
        
    01.07.2017 / 15:41