ℹ️ Skipped - page is already crawled
| Filter | Status | Condition | Details |
|---|---|---|---|
| HTTP status | PASS | download_http_code = 200 | HTTP 200 |
| Age cutoff | PASS | download_stamp > now() - 6 MONTH | 0.1 months ago |
| History drop | PASS | isNull(history_drop_reason) | No drop reason |
| Spam/ban | PASS | fh_dont_index != 1 AND ml_spam_score = 0 | ml_spam_score=0 |
| Canonical | PASS | meta_canonical IS NULL OR = '' OR = src_unparsed | Not set |
| Property | Value |
|---|---|
| URL | https://itslinuxfoss.com/fix-conda-command-not-found-error/ |
| Last Crawled | 2026-04-16 20:47:38 (2 days ago) |
| First Indexed | 2022-09-05 14:36:07 (3 years ago) |
| HTTP Status Code | 200 |
| Meta Title | How to fix the “conda: command not found” error – Its Linux FOSS |
| Meta Description | The “conda: command not found” problem is prompted when the Anaconda software is not installed on the system or when the path variable is not updated. |
| Meta Canonical | null |
| Boilerpipe Text | Conda is a tool that is utilized for managing various packages and dependencies. It is of utmost importance that these packages be managed properly and swapped in and out as the requirements change. To fulfill this purpose, software such as Conda exists. Designed primarily for Python and Conda, however, it is also be utilized while dealing with other languages. In attempting to use this software, a familiar error may occur with the statement “
conda: command not found
”.
This post provides a detailed guide on the reasons for the error “conda: command not found” and also provides the solution to these reasons.
There exist various causes that can invoke this error. This section will explain all these possible reasons and their solutions as well. Let’s start:
Reason 1: Conda Not Installed
The first and most common reason for any “
command not found
” error is that the software is not installed on the system. Check out the snippet below for the error:
In this case, Conda is not installed on the system, and hence when you attempt to run the “
conda
” command, this error will be prompted.
Solution: Install Conda
To get rid of this error invoked above, you need to install conda on your system. To do so, follow the below stated steps:
Step 1: Update the System’s Packages
Firstly, update the system’s repository using the command shown below:
$ sudo apt update
Step 2: Download the Installation Script of Conda
Once the repositories are updated, run the command shown below to download the installation script of the Conda:
$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
This command will retrieve and download the script onto the system as shown below:
Step 3: Execute the Script
Once downloaded, run the command shown below to execute the script:
Once prompted, type “
yes
” to continue the installation. Then you will be shown the path of the software where it will be installed. Remember the path of installation for the software as well. This is shown in the snippet below:
When the following message pops up, enter “
no
” since Anaconda3 is not required to be initialized at this moment. Check out the demonstration as shown in the example below:
Step 4: Add the Conda Path
The final step to this installation is setting up the Anaconda software’s path. To achieve this, simply run the command shown below:
$ export PATH=/home/itslinuxfoss/anaconda3/bin:$PATH
Ensure that the path entered in this command is the same as noted in the above-mentioned snippet where Anaconda was installed. Once the path is added, the error should be removed, and Conda should work as demonstrated below:
Reason 2: Path Not Updated
Oftentimes, the software is installed on the system, but the Path Environment variable is not set in the system. This will also prompt the “
conda: command not found
” problem.
Solution: Add the Path Variable
Updating the Path on Linux is very simple. Just execute the following two commands, and the Anaconda path will be added. The first command will update the path inside the bashrc file, and the second command will. The source command will pass this updated argument to the file as shown below:
$ echo 'export PATH=/path/to/anaconda3/bin:$PATH' >> ~/.bashrc
$ source .bashrc
This will resolve the error, and you will be able to run the “
conda
” command as you can see from the example below:
Through these methods, you have fixed the “conda: command not found” issue.
Conclusion
The “
conda: command not found
” problem is prompted when the Anaconda software is not installed on the system or when the path variable is not updated. Anaconda software can be installed by downloading and executing the bash installer script. The Path Environment variable is added to the .bashrc file to resolve this issue. This post demonstrates the reasons and solutions for the error “conda: command not found”.
Saryia is a technology entrepreneur and digital publisher specializing in Linux, open-source technologies, and developer education. |
| Markdown | [Skip to content](https://itslinuxfoss.com/fix-conda-command-not-found-error/#content "Skip to content")
[Its Linux FOSS](https://itslinuxfoss.com/)
Menu
- [Bash](https://itslinuxfoss.com/category/bash/)
- [Ubuntu](https://itslinuxfoss.com/category/ubuntu/)
- [Debian](https://itslinuxfoss.com/category/debian/)
- [Master Linux in 20 Minutes](https://freepdf.itslinuxfoss.com/)
- [Contact](https://itslinuxfoss.com/contact/)
[](https://itslinuxfoss.com/ "Its Linux FOSS")
[](https://itslinuxfoss.com/ "Its Linux FOSS")
Menu
- [Bash](https://itslinuxfoss.com/category/bash/)
- [Ubuntu](https://itslinuxfoss.com/category/ubuntu/)
- [Debian](https://itslinuxfoss.com/category/debian/)
- [Master Linux in 20 Minutes](https://freepdf.itslinuxfoss.com/)
- [Contact](https://itslinuxfoss.com/contact/)
# How to fix the “conda: command not found” error


Conda is a tool that is utilized for managing various packages and dependencies. It is of utmost importance that these packages be managed properly and swapped in and out as the requirements change. To fulfill this purpose, software such as Conda exists. Designed primarily for Python and Conda, however, it is also be utilized while dealing with other languages. In attempting to use this software, a familiar error may occur with the statement “**conda: command not found**”.
This post provides a detailed guide on the reasons for the error “conda: command not found” and also provides the solution to these reasons.
## **Fix the “conda: command not found” Problem**
There exist various causes that can invoke this error. This section will explain all these possible reasons and their solutions as well. Let’s start:
## **Reason 1: Conda Not Installed**
The first and most common reason for any “**command not found**” error is that the software is not installed on the system. Check out the snippet below for the error:


In this case, Conda is not installed on the system, and hence when you attempt to run the “**conda**” command, this error will be prompted.
## **Solution: Install Conda**
To get rid of this error invoked above, you need to install conda on your system. To do so, follow the below stated steps:
**Step 1: Update the System’s Packages**
Firstly, update the system’s repository using the command shown below:
```
$ sudo apt update
```


**Step 2: Download the Installation Script of Conda**
Once the repositories are updated, run the command shown below to download the installation script of the Conda:
```
$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
```
This command will retrieve and download the script onto the system as shown below:


**Step 3: Execute the Script**
Once downloaded, run the command shown below to execute the script:


Once prompted, type “**yes**” to continue the installation. Then you will be shown the path of the software where it will be installed. Remember the path of installation for the software as well. This is shown in the snippet below:


When the following message pops up, enter “**no**” since Anaconda3 is not required to be initialized at this moment. Check out the demonstration as shown in the example below:


**Step 4: Add the Conda Path**
The final step to this installation is setting up the Anaconda software’s path. To achieve this, simply run the command shown below:
```
$ export PATH=/home/itslinuxfoss/anaconda3/bin:$PATH
```


Ensure that the path entered in this command is the same as noted in the above-mentioned snippet where Anaconda was installed. Once the path is added, the error should be removed, and Conda should work as demonstrated below:


## **Reason 2: Path Not Updated**
Oftentimes, the software is installed on the system, but the Path Environment variable is not set in the system. This will also prompt the “**conda: command not found**” problem.
## **Solution: Add the Path Variable**
Updating the Path on Linux is very simple. Just execute the following two commands, and the Anaconda path will be added. The first command will update the path inside the bashrc file, and the second command will. The source command will pass this updated argument to the file as shown below:
```
$ echo 'export PATH=/path/to/anaconda3/bin:$PATH' >> ~/.bashrc
$ source .bashrc
```


This will resolve the error, and you will be able to run the “**conda**” command as you can see from the example below:


Through these methods, you have fixed the “conda: command not found” issue.
## **Conclusion**
The “**conda: command not found**” problem is prompted when the Anaconda software is not installed on the system or when the path variable is not updated. Anaconda software can be installed by downloading and executing the bash installer script. The Path Environment variable is added to the .bashrc file to resolve this issue. This post demonstrates the reasons and solutions for the error “conda: command not found”.


[Saryia](https://itslinuxfoss.com/author/admin/)
Saryia is a technology entrepreneur and digital publisher specializing in Linux, open-source technologies, and developer education.
Categories [Linux](https://itslinuxfoss.com/category/linux/)
[How to fix the “command ‘x86\_64-linux-gnu-gcc’ failed with exit status 1” error](https://itslinuxfoss.com/fix-command-x86-64-linux-gnu-gcc-failed-with-exit-status1/)
[How to fix the “Could not open lock file /var/lib/dpkg/lock-frontend” error](https://itslinuxfoss.com/fix-could-not-open-lock-file-dpkg-error/)
## ItsLinuxFoss Posts
- [How to Import an Excel File into Python Using Pandas?](https://itslinuxfoss.com/import-excel-file-into-python-using-pandas/)
In Python
- [How to fix “zipimport.ZipImportError: can’t decompress …](https://itslinuxfoss.com/zip-import-error-zlib-not-available/)
In Linux
- [How to Convert Float to String in Python?](https://itslinuxfoss.com/convert-float-to-string-python/)
In Python
- [How to install MPV Media Player on Ubuntu 22.04](https://itslinuxfoss.com/install-mpv-media-player-ubuntu-22-04/)
In Ubuntu
- [Subtraction in Python \| Explained With Examples](https://itslinuxfoss.com/subtraction-python-explained/)
In Python
##### Get FREE Updates on Latest Tutorials
Your email with us is completely safe, subscribe and start growing\!
[About](https://itslinuxfoss.com/about/) \| [Privacy Policy](https://itslinuxfoss.com/privacy-policy/)
© 2026 Managed & Operated by [LinuxHint.com](https://linuxhint.com/) |
| Readable Markdown | Conda is a tool that is utilized for managing various packages and dependencies. It is of utmost importance that these packages be managed properly and swapped in and out as the requirements change. To fulfill this purpose, software such as Conda exists. Designed primarily for Python and Conda, however, it is also be utilized while dealing with other languages. In attempting to use this software, a familiar error may occur with the statement “**conda: command not found**”.
This post provides a detailed guide on the reasons for the error “conda: command not found” and also provides the solution to these reasons.
There exist various causes that can invoke this error. This section will explain all these possible reasons and their solutions as well. Let’s start:
## **Reason 1: Conda Not Installed**
The first and most common reason for any “**command not found**” error is that the software is not installed on the system. Check out the snippet below for the error:

In this case, Conda is not installed on the system, and hence when you attempt to run the “**conda**” command, this error will be prompted.
## **Solution: Install Conda**
To get rid of this error invoked above, you need to install conda on your system. To do so, follow the below stated steps:
**Step 1: Update the System’s Packages**
Firstly, update the system’s repository using the command shown below:
```
$ sudo apt update
```

**Step 2: Download the Installation Script of Conda**
Once the repositories are updated, run the command shown below to download the installation script of the Conda:
```
$ wget https://repo.anaconda.com/archive/Anaconda3-2022.05-Linux-x86_64.sh
```
This command will retrieve and download the script onto the system as shown below:

**Step 3: Execute the Script**
Once downloaded, run the command shown below to execute the script:

Once prompted, type “**yes**” to continue the installation. Then you will be shown the path of the software where it will be installed. Remember the path of installation for the software as well. This is shown in the snippet below:

When the following message pops up, enter “**no**” since Anaconda3 is not required to be initialized at this moment. Check out the demonstration as shown in the example below:

**Step 4: Add the Conda Path**
The final step to this installation is setting up the Anaconda software’s path. To achieve this, simply run the command shown below:
```
$ export PATH=/home/itslinuxfoss/anaconda3/bin:$PATH
```

Ensure that the path entered in this command is the same as noted in the above-mentioned snippet where Anaconda was installed. Once the path is added, the error should be removed, and Conda should work as demonstrated below:

## **Reason 2: Path Not Updated**
Oftentimes, the software is installed on the system, but the Path Environment variable is not set in the system. This will also prompt the “**conda: command not found**” problem.
## **Solution: Add the Path Variable**
Updating the Path on Linux is very simple. Just execute the following two commands, and the Anaconda path will be added. The first command will update the path inside the bashrc file, and the second command will. The source command will pass this updated argument to the file as shown below:
```
$ echo 'export PATH=/path/to/anaconda3/bin:$PATH' >> ~/.bashrc
$ source .bashrc
```

This will resolve the error, and you will be able to run the “**conda**” command as you can see from the example below:

Through these methods, you have fixed the “conda: command not found” issue.
## **Conclusion**
The “**conda: command not found**” problem is prompted when the Anaconda software is not installed on the system or when the path variable is not updated. Anaconda software can be installed by downloading and executing the bash installer script. The Path Environment variable is added to the .bashrc file to resolve this issue. This post demonstrates the reasons and solutions for the error “conda: command not found”.

Saryia is a technology entrepreneur and digital publisher specializing in Linux, open-source technologies, and developer education. |
| Shard | 28 (laksa) |
| Root Hash | 17451656455782152028 |
| Unparsed URL | com,itslinuxfoss!/fix-conda-command-not-found-error/ s443 |