🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 28 (from laksa045)

2. Crawled Status Check

Query:
Response:

3. Robots.txt Check

Query:
Response:

4. Spam/Ban Check

Query:
Response:

5. Seen Status Check

ℹ️ Skipped - page is already crawled

📄
INDEXABLE
CRAWLED
2 days ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0.1 months ago
History dropPASSisNull(history_drop_reason)No drop reason
Spam/banPASSfh_dont_index != 1 AND ml_spam_score = 0ml_spam_score=0
CanonicalPASSmeta_canonical IS NULL OR = '' OR = src_unparsedNot set

Page Details

PropertyValue
URLhttps://itslinuxfoss.com/fix-conda-command-not-found-error/
Last Crawled2026-04-16 20:47:38 (2 days ago)
First Indexed2022-09-05 14:36:07 (3 years ago)
HTTP Status Code200
Meta TitleHow to fix the “conda: command not found” error – Its Linux FOSS
Meta DescriptionThe “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 Canonicalnull
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/) [![Its Linux FOSS](https://itslinuxfoss.com/wp-content/uploads/2021/09/cropped-itslinuxfoss-logo.webp)](https://itslinuxfoss.com/ "Its Linux FOSS") [![Its Linux FOSS](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2040%2061'%3E%3C/svg%3E)![Its Linux FOSS](https://itslinuxfoss.com/wp-content/uploads/2022/05/admin-ajax.php_.webp)](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 ![How to fix the conda\_ command not found error](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20800%20400'%3E%3C/svg%3E) ![How to fix the conda\_ command not found error](https://itslinuxfoss.com/wp-content/uploads/2022/09/How-to-fix-the-conda_-command-not-found-error.webp) 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: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20486%20110'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-1.png) 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 ``` ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20736%20483'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-2.png) **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: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20739%20383'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-3.png) **Step 3: Execute the Script** Once downloaded, run the command shown below to execute the script: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20733%20482'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-4.png) 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: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20738%20491'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-5.png) 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: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20735%20476'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-6.png) **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 ``` ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20734%20114'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-7.png) 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: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20484%20110'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-8.png) ## **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 ``` ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20731%20130'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-9.png) This will resolve the error, and you will be able to run the “**conda**” command as you can see from the example below: ![](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20730%20488'%3E%3C/svg%3E) ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-10.png) 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”. ![itslinuxfoss.com logo image](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%20100'%3E%3C/svg%3E) ![itslinuxfoss.com logo image](https://itslinuxfoss.com/wp-content/uploads/2020/12/itslinuxfoss-author-gif.gif) [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](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2075%2075'%3E%3C/svg%3E)![How to Import an Excel File into Python Using Pandas](https://itslinuxfoss.com/wp-content/uploads/2023/02/How-to-Import-an-Excel-File-into-Python-Using-Pandas-01-150x150.webp)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 data; zlib not available](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2075%2075'%3E%3C/svg%3E)![How to fix zipimport.ZipImportError: can't decompress data; zlib not available](https://itslinuxfoss.com/wp-content/uploads/2022/07/Error-Thumbnail-01-150x150.webp)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](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2075%2075'%3E%3C/svg%3E)![How to Convert Float to String in Python](https://itslinuxfoss.com/wp-content/uploads/2023/01/How-to-Convert-Float-to-String-in-Python-01-150x150.webp)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](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2075%2075'%3E%3C/svg%3E)![How to install MPV Media Player on Ubuntu 22.04](https://itslinuxfoss.com/wp-content/uploads/2022/06/How-to-install-MPV-Media-Player-on-Ubuntu-22.04-and-Linux-Mint-20_-150x150.webp)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](data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2075%2075'%3E%3C/svg%3E)![Subtraction in Python \_ Explained With Examples](https://itslinuxfoss.com/wp-content/uploads/2023/03/Subtraction-in-Python-_-Explained-With-Examples-01-150x150.webp)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: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-1.png) 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 ``` ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-2.png) **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: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-3.png) **Step 3: Execute the Script** Once downloaded, run the command shown below to execute the script: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-4.png) 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: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-5.png) 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: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-6.png) **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 ``` ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-7.png) 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: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-8.png) ## **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 ``` ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-9.png) This will resolve the error, and you will be able to run the “**conda**” command as you can see from the example below: ![](https://itslinuxfoss.com/wp-content/uploads/2022/09/conda-command-not-found-in-linux-10.png) 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”. ![itslinuxfoss.com logo image](https://itslinuxfoss.com/wp-content/uploads/2020/12/itslinuxfoss-author-gif.gif) Saryia is a technology entrepreneur and digital publisher specializing in Linux, open-source technologies, and developer education.
Shard28 (laksa)
Root Hash17451656455782152028
Unparsed URLcom,itslinuxfoss!/fix-conda-command-not-found-error/ s443