Nano is not recognized as an internal or external command, operable program or batch file

Status: Deprecated

This article is deprecated and no longer maintained.

Reason

We now provide Git setup instructions for each platform individually.

See Instead

This article may still be useful as a reference, but may not follow best practices. We strongly recommend using a more recent article.

  • How To Install Git on Ubuntu 20.04

Introduction

Open-source projects that are hosted in public repositories benefit from contributions made by the broader developer community, and are typically managed through Git.

A distributed version control system, Git helps both individuals and teams contribute to and maintain open-source software projects. Free to download and use, Git is an example of an open-source project itself.

This tutorial will discuss the benefits of contributing to open-source projects, and go over installing and setting up Git so that you can contribute to software projects.

Contributing to Open-Source Projects

Open-source software is software that is freely available to use, redistribute, and modify.

Projects that follow the open-source development model encourage a transparent process that is advanced through distributed peer review. Open-source projects can be updated quickly and as needed, and offer reliable and flexible software that is not built on locked proprietary systems.

Contributing to open-source projects helps ensure that they are as good as they can be and representative of the broad base of technology end-users. When end-users contribute to open-source projects through code or documentation, their diverse perspectives provide added value to the project, the project’s end-users, and the larger developer community.

The best way to begin to contribute to open-source projects is to start by contributing to software that you already use. As a user of a particular tool, you best understand what functionalities would be most valuable to the project. Make sure you read any available documentation about the software first. In fact, many open-source projects will have a CONTRIBUTING.md file in the root directory, which you should read carefully before you contribute. You may also want to get a sense of the interactions between other developers in the community if there are forums about the project available.

Finally, if you’re starting out with contributing to open-source software, it is a good idea to start with something small — each contribution is valuable. You may want to start with fixing typos, adding comments, or writing clearer documentation.

Git

One of the most popular version control systems for software is Git. Git was created in 2005 by Linus Torvalds, the creator of the Linux kernel. Originally utilized for the development of the Linux kernel, Junio Hamano is the current maintainer of the project.

Many projects maintain their files in a Git repository, and sites like GitHub, GitLab, and Bitbucket have streamlined the process of sharing and contributing to code. Every working directory in Git is a full-fledged repository with complete history and tracking independent of network access or a central server.

Version control has become an indispensable tool in modern software development because these systems allow you to keep track of software at the source level. You and other members of a development team can track changes, revert to previous stages, and branch off from the base code to create alternative versions of files and directories.

Git is so useful for open-source projects because it facilitates the contributions of many developers. Each contributor can branch off from the main or master branch of the code base repository to isolate their own changes, and can then make a pull request to have these changes integrated into the main project.

To use Git to contribute to open-source projects, let’s check if Git is installed, and if it’s not, let’s go through how to install it on your local machine.

Check If Git is Installed

First, you will want to check if you have Git command line tools installed on your computer. If you have been making repositories of your own code, then you likely have Git installed on your local machine. Some operating systems also come with Git installed, so it is worth checking before you install.

You can check whether Git is installed and what version you are using by opening up a terminal window in Linux or Mac, or a command prompt window in Windows, and typing the following command:

  1. git --version

However, if Git is not installed, you will receive an error similar to the following:

-bash: git: command not found
'git' is not recognized as an internal or external command, operable program, or batch file.

In this case, you should install Git into your machine. Let’s go through installation for several of the major operating systems.

Installing Git on Linux

By far the easiest way of getting Git installed and ready to use is by using your version of Linux’s default repositories. Let’s go through how to install Git on your local Linux machine using this method.

Installing Git on Ubuntu or Debian

You can use the APT package management tools to update your local package index. After, you can download and install the program:

  1. sudo apt update
  2. sudo apt install git

While this is the fastest method of installing Git, the version may be older than the newest version. If you need the latest release, consider compiling Git from source by using this guide.

From here, you can continue on to the section on Setting Up Git.

Installing Git on CentOS

We’ll be using yum, CentOS’s native package manager, to search for and install the latest Git package available in CentOS’s repositories.

Let’s first make sure that yum is up to date by running this command:

  1. sudo yum -y update

The -y flag is used to alert the system that we are aware that we are making changes, preventing the terminal from prompting us to confirm.

Now, we can go ahead and install Git:

  1. sudo yum install git

While this is the fastest method of installing Git, the version may be older than the newest version. If you need the latest release, consider compiling Git from source by following Option 2 from this guide.

From here, you can continue on to the section on Setting Up Git.

Installing Git on Fedora

Git packages for Fedora are available through both yum and dnf. Introduced in Fedora 18, DNF, or Dandified Yum, has been the default package manager for Fedora since Fedora 22.

From your terminal window, update dnf and install Git:

  1. sudo dnf update
  2. sudo dnf install git

If you have an older version of Fedora, you can use the yum command instead. Let’s first update yum, then install Git:

  1. sudo yum update
  2. sudo yum install git

From here, you can continue on to the section on Setting Up Git.

Installing Git on macOS

On a local Macintosh computer, if you type a Git command into your Terminal window (as in git --version above), you’ll be prompted to install Git if it is not already on your system. When you receive this prompt, you should agree to have Git installed and follow the instructions and respond to the prompts in your Terminal window.

You can install the most recent version of Git onto your Mac by installing it through the binary installer. There is an OS X Git installer maintained and available for download through the Git website. Clicking here will cause the download to start automatically.

Once Git is fully installed, you can continue on to the section on Setting Up Git.

Installing Git on Windows

For Windows, the official build is available for you to download through the Git website. Clicking here will cause the download to start automatically.

There is also an open-source project called Git for Windows, which is separate from the official Git website. This tool provides both command line and graphical user interface tools for using Git effectively on your Windows machine. For more information about this project and to inspect and download the code, visit the Git for Windows project site.

Once Git is fully installed, you can continue on to the section on Setting Up Git.

Setting Up Git

Now that you have Git installed, you need to do a few things so that the commit messages that will be generated for you will contain your correct information.

The easiest way of doing this is through the git config command. Specifically, we need to provide our name and email address because Git embeds this information into each commit we do. We can go ahead and add this information by typing:

  1. git config --global user.name "Your Name"
  2. git config --global user.email ""

We can review all of the configuration items that have been set by typing:

  1. git config --list

git configuration

user.name=Your Name
user.email=

As you may notice, this has a slightly different format. The information is stored in your Git configuration file, which you can optionally edit by hand with a text editor, like nano for example:

  1. nano ~/.gitconfig

~/.gitconfig contents

[user]
    name = Your Name
    email = 

Once you’re done editing your file, you can exit nano by typing the control and x keys, and when prompted to save the file press y.

There are many other options that you can set, but these are the two essential ones needed to prevent warnings in the future.

Conclusion

With Git installed and set up on your local machine, you are now ready to use Git for version control of your own software projects as well as contribute to open-source projects that are open to the public.

Adding your own contributions to open-source software is a great way to become more involved in the broader developer community, and help to ensure that software made for the public is of high quality and fully representative of the end-users.

How do I fix nano command not found?

Nano is installed in /usr/local/bin . How to solve this problem?.
extract the files with tar -xvJf..
./configure --enable-utf8 --enable-nanorc..
sudo make..
sudo make install..

How do I get a nano command in CMD?

Then, you'll be able to call nano from anywhere via cmd..
download the nano*.exe file from internet..
keep it in a nano folder..
give the path of this nano.exe file in the env variables (user variables)..
Open cmd prompt and type: nano script.sh..
command in step 4 will open a nano editor..

How do I run a nano command in Windows?

Find nano.exe from inside the “bin” folder and copy it to C:\Windows\ folder of your PC. This is it. Now you can invoke nano.exe from anywhere in your Windows PC. You can basically launch command prompt and give command nano to invoke nano editor.

How do I install nano editor?

Nano (Simple Text Editor).
Ubuntu/Debian: sudo apt-get -y install nano..
RedHat/CentOS/Fedora: sudo yum install nano..
Mac OS X: nano is installed by default..