🕷️ Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 77 (from laksa008)

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
1 day ago
🤖
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH0 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://medium.com/@sawepeter6/conda-command-not-found-ac28bea24291
Last Crawled2026-04-11 10:40:30 (1 day ago)
First Indexednot set
HTTP Status Code200
Meta TitleConda Command Not Found. I recently installed Anaconda on my… | by Peter sawe | Medium
Meta DescriptionConda Command Not Found I recently installed Anaconda on my ubuntu 23.10 but every time i try to run the “conda list” or “conda — version” commands on the terminal it throws the error …
Meta Canonicalnull
Boilerpipe Text
Press enter or click to view image in full size 3 min read Jan 22, 2024 I recently installed Anaconda on my ubuntu 23.10 but every time i try to run the “conda list” or “conda — version” commands on the terminal it throws the error “Conda Command Not Found”. After researching and being stuck on the issue for long i finally found a solution to this error. Below is how to solve this error if your are running on ubuntu or any linux operating system. Error Cause The terminal throws this error since it does not recognize the “conda” command. The “conda command not found” error occurs whenever the system’s PATH does not include the directory where the “conda” command is installed. This maybe be caused by a number of issues such as incorrect installation. To solve this we have to add the PATH manually. Solution Step 1: Anaconda installation verification Check if you installed Anaconda3 correctly using the following command. ls ~ By default, anaconda is installed in the home directory. If the installation is correct you should see a directory named “anaconda3” after you run the command. Step 2: Conda Executable Location Using the following command to locate the “conda” executable. By default it is located within the “bin” directory. ls ~/anaconda3/bin you should see “conda” amongst the list. Step 3: Add Conda to the System Path Get Peter sawe’s stories in your inbox Join Medium for free to get updates from this writer. Remember me for faster sign in Here which is the main solution to our problem is configuring the “conda” executable to our system’s PATH. To achieve this we modify either the .bashrc or .bash_profile. In your terminal, type this command to open the .bashrc file in a text editor nano ~/.bashrc Add th following line at the end of the file: export PATH=~/anaconda3/bin:$PATH Save and close the file. Lastly to save and apply the changes run the following command. source ~/.bashrc Step 4: Verify the Solution This can be done by running the “conda” on the terminal. conda — version This should display the version of conda. If your get to see this then you have successfully solved the “conda command not found” error. Conclusion Thanks for checking out this and i hope it helped you solve the error.
Markdown
[Sitemap](https://medium.com/sitemap/sitemap.xml) [Open in app](https://play.google.com/store/apps/details?id=com.medium.reader&referrer=utm_source%3DmobileNavBar&source=post_page---top_nav_layout_nav-----------------------------------------) Sign up [Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2F%40sawepeter6%2Fconda-command-not-found-ac28bea24291&source=post_page---top_nav_layout_nav-----------------------global_nav------------------) [Medium Logo](https://medium.com/?source=post_page---top_nav_layout_nav-----------------------------------------) Get app [Write](https://medium.com/m/signin?operation=register&redirect=https%3A%2F%2Fmedium.com%2Fnew-story&source=---top_nav_layout_nav-----------------------new_post_topnav------------------) [Search](https://medium.com/search?source=post_page---top_nav_layout_nav-----------------------------------------) Sign up [Sign in](https://medium.com/m/signin?operation=login&redirect=https%3A%2F%2Fmedium.com%2F%40sawepeter6%2Fconda-command-not-found-ac28bea24291&source=post_page---top_nav_layout_nav-----------------------global_nav------------------) ![](https://miro.medium.com/v2/resize:fill:32:32/1*dmbNkD5D-u45r44go_cf0g.png) Press enter or click to view image in full size ![](https://miro.medium.com/v2/resize:fit:700/1*wJWdgmMuzHXVoz9PORAxpA.jpeg) # Conda Command Not Found [![Peter sawe](https://miro.medium.com/v2/resize:fill:32:32/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---byline--ac28bea24291---------------------------------------) [Peter sawe](https://medium.com/@sawepeter6?source=post_page---byline--ac28bea24291---------------------------------------) Follow 3 min read · Jan 22, 2024 225 5 [Listen](https://medium.com/m/signin?actionUrl=https%3A%2F%2Fmedium.com%2Fplans%3Fdimension%3Dpost_audio_button%26postId%3Dac28bea24291&operation=register&redirect=https%3A%2F%2Fmedium.com%2F%40sawepeter6%2Fconda-command-not-found-ac28bea24291&source=---header_actions--ac28bea24291---------------------post_audio_button------------------) Share I recently installed Anaconda on my ubuntu 23.10 but every time i try to run the “conda list” or “conda — version” commands on the terminal it throws the error “Conda Command Not Found”. After researching and being stuck on the issue for long i finally found a solution to this error. Below is how to solve this error if your are running on ubuntu or any linux operating system. ## **Error Cause** The terminal throws this error since it does not recognize the “conda” command. The “conda command not found” error occurs whenever the system’s PATH does not include the directory where the “conda” command is installed. This maybe be caused by a number of issues such as incorrect installation. To solve this we have to add the PATH manually. ## **Solution** **Step 1: Anaconda installation verification** Check if you installed Anaconda3 correctly using the following command. > ls ~ By default, anaconda is installed in the home directory. If the installation is correct you should see a directory named “anaconda3” after you run the command. ![ls ~ command execution results](https://miro.medium.com/v2/resize:fit:567/1*n9ejY1A-B__2dr7wF2blEg.png) **Step 2: Conda Executable Location** Using the following command to locate the “conda” executable. By default it is located within the “bin” directory. > ls ~/anaconda3/bin you should see “conda” amongst the list. ![](https://miro.medium.com/v2/resize:fit:567/1*JgWQXRH3kkP4xzHRb5tWMA.png) **Step 3: Add Conda to the System Path** ## Get Peter sawe’s stories in your inbox Join Medium for free to get updates from this writer. Subscribe Subscribe Remember me for faster sign in Here which is the main solution to our problem is configuring the “conda” executable to our system’s PATH. To achieve this we modify either the .bashrc or .bash\_profile. In your terminal, type this command to open the .bashrc file in a text editor > nano ~/.bashrc Add th following line at the end of the file: > export PATH=~/anaconda3/bin:\$PATH ![](https://miro.medium.com/v2/resize:fit:567/1*qef3F0LcASRdMEvVvUlheA.png) Save and close the file. Lastly to save and apply the changes run the following command. > source ~/.bashrc **Step 4: Verify the Solution** This can be done by running the “conda” on the terminal. > conda — version This should display the version of conda. If your get to see this then you have successfully solved the “conda command not found” error. ![](https://miro.medium.com/v2/resize:fit:567/1*2mXC_O2yZ3eaFLgBlqUfWQ.png) **Conclusion** Thanks for checking out this and i hope it helped you solve the error. [Data Science](https://medium.com/tag/data-science?source=post_page-----ac28bea24291---------------------------------------) [Anaconda](https://medium.com/tag/anaconda?source=post_page-----ac28bea24291---------------------------------------) [Conda](https://medium.com/tag/conda?source=post_page-----ac28bea24291---------------------------------------) [Python](https://medium.com/tag/python?source=post_page-----ac28bea24291---------------------------------------) 225 225 5 [![Peter sawe](https://miro.medium.com/v2/resize:fill:48:48/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---post_author_info--ac28bea24291---------------------------------------) [![Peter sawe](https://miro.medium.com/v2/resize:fill:64:64/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---post_author_info--ac28bea24291---------------------------------------) Follow [Written by Peter sawe](https://medium.com/@sawepeter6?source=post_page---post_author_info--ac28bea24291---------------------------------------) [33 followers](https://medium.com/@sawepeter6/followers?source=post_page---post_author_info--ac28bea24291---------------------------------------) ·[212 following](https://medium.com/@sawepeter6/following?source=post_page---post_author_info--ac28bea24291---------------------------------------) Android \| MERN Stack Developer \| tech lover Follow ## Responses (5) ![](https://miro.medium.com/v2/resize:fill:32:32/1*dmbNkD5D-u45r44go_cf0g.png) Write a response [What are your thoughts?](https://medium.com/m/signin?operation=register&redirect=https%3A%2F%2Fmedium.com%2F%40sawepeter6%2Fconda-command-not-found-ac28bea24291&source=---post_responses--ac28bea24291---------------------respond_sidebar------------------) Cancel Respond [![Q](https://miro.medium.com/v2/resize:fill:32:32/0*azVEgBSdVrvWlBYC)](https://medium.com/@quyiting222?source=post_page---post_responses--ac28bea24291----0-----------------------------------) [Q](https://medium.com/@quyiting222?source=post_page---post_responses--ac28bea24291----0-----------------------------------) [Oct 5, 2024](https://medium.com/@quyiting222/why-the-terminal-still-answer-bash-home-ubuntu-user-hall-miniconda3-bin-conda-cannot-5edd23d44756?source=post_page---post_responses--ac28bea24291----0-----------------------------------) ``` why the terminal still answer:bash:home/ubuntu-user/hall/miniconda3/bin/conda:cannot execute:required file not found ``` 14 Reply [![Naval Selvan](https://miro.medium.com/v2/resize:fill:32:32/0*ZuH5tJHfhXtAn1di)](https://medium.com/@nvlslvn.s?source=post_page---post_responses--ac28bea24291----1-----------------------------------) [Naval Selvan](https://medium.com/@nvlslvn.s?source=post_page---post_responses--ac28bea24291----1-----------------------------------) [Sep 20, 2024](https://medium.com/@nvlslvn.s/helped-at-the-right-time-thanks-6c49224a6cc6?source=post_page---post_responses--ac28bea24291----1-----------------------------------) ``` Helped at the right time ! Thanks! ``` 16 Reply [![Bradenmaccke](https://miro.medium.com/v2/resize:fill:32:32/0*vu8HKXOO8CftPfLw)](https://medium.com/@bradenmaccke?source=post_page---post_responses--ac28bea24291----2-----------------------------------) [Bradenmaccke](https://medium.com/@bradenmaccke?source=post_page---post_responses--ac28bea24291----2-----------------------------------) [Sep 12, 2024](https://medium.com/@bradenmaccke/flawless-thanks-f967285cc4c8?source=post_page---post_responses--ac28bea24291----2-----------------------------------) ``` Flawless! Thanks! ``` 18 Reply See all responses ## More from Peter sawe ![How to Connect MongoDB Atlas with NodeJS Express Backend.](https://miro.medium.com/v2/resize:fit:679/format:webp/1*HRth6_FTDb4H76PBsUby3A.jpeg) [![Peter sawe](https://miro.medium.com/v2/resize:fill:20:20/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----0---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [Peter sawe](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----0---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [How to Connect MongoDB Atlas with NodeJS Express Backend.In this article, we will go through the step-by-step process of connecting MongoDB Atlas to the NodeJS Express Backend. MongoDB Atlas is a…](https://medium.com/@sawepeter6/how-to-connect-mongodb-atlas-with-nodejs-express-backend-879cfb312af8?source=post_page---author_recirc--ac28bea24291----0---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) Jul 11, 2023 [A clap icon 10A response icon 1](https://medium.com/@sawepeter6/how-to-connect-mongodb-atlas-with-nodejs-express-backend-879cfb312af8?source=post_page---author_recirc--ac28bea24291----0---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) ![How to update Android Studio to the latest Version on Windows](https://miro.medium.com/v2/resize:fit:679/format:webp/1*6_bTnvVpwVXiz73wz4kTEA.png) [![Peter sawe](https://miro.medium.com/v2/resize:fill:20:20/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----1---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [Peter sawe](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----1---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [How to update Android Studio to the latest Version on WindowsI recently decided to start learning Flutter after purchasing a Flutter Course on Udemy. The last time I used Android Studio was with the…](https://medium.com/@sawepeter6/how-to-update-android-studio-to-the-latest-version-on-windows-3ffaa121d627?source=post_page---author_recirc--ac28bea24291----1---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) Mar 17, 2025 ![Conditional Formatting in Google Sheets guide 2024](https://miro.medium.com/v2/resize:fit:679/format:webp/1*oo6JYhJP2ZQOsxcSXDYloA.png) [![Peter sawe](https://miro.medium.com/v2/resize:fill:20:20/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----2---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [Peter sawe](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----2---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [Conditional Formatting in Google Sheets guide 2024Google Sheets is an excel based cloud platform that enables users to enjoy most of the Excel features without necessarily having to install…](https://medium.com/@sawepeter6/conditional-formatting-in-google-sheets-guide-2024-d4ddf072d029?source=post_page---author_recirc--ac28bea24291----2---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) Feb 12, 2024 [A clap icon 1](https://medium.com/@sawepeter6/conditional-formatting-in-google-sheets-guide-2024-d4ddf072d029?source=post_page---author_recirc--ac28bea24291----2---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) ![DEBUG YOUR ANDROID APPLICATION OVER WIFI](https://miro.medium.com/v2/resize:fit:679/format:webp/1*r-n9NJvQeguXjt36eFBdBQ.png) [![Peter sawe](https://miro.medium.com/v2/resize:fill:20:20/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----3---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [Peter sawe](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291----3---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [DEBUG YOUR ANDROID APPLICATION OVER WIFIMany are the times android developers have the problem of debugging their applications as a result of faulty USB cables. But I have some…](https://medium.com/@sawepeter6/debug-your-android-application-over-wifi-62003c6007e8?source=post_page---author_recirc--ac28bea24291----3---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) Jan 29, 2019 [A clap icon 252](https://medium.com/@sawepeter6/debug-your-android-application-over-wifi-62003c6007e8?source=post_page---author_recirc--ac28bea24291----3---------------------77cd1b8a_9b26_4597_82f9_55322d9c8c81--------------) [See all from Peter sawe](https://medium.com/@sawepeter6?source=post_page---author_recirc--ac28bea24291---------------------------------------) ## Recommended from Medium ![If You Understand These 5 AI Terms, You’re Ahead of 90% of People](https://miro.medium.com/v2/resize:fit:679/format:webp/1*qbVrf-wO9PYtthAj6E4RYQ.png) [![Towards AI](https://miro.medium.com/v2/resize:fill:20:20/1*JyIThO-cLjlChQLb6kSlVQ.png)](https://medium.com/towards-artificial-intelligence?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) In [Towards AI](https://medium.com/towards-artificial-intelligence?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) by [Shreyas Naphad](https://medium.com/@shreyasnaphad?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [If You Understand These 5 AI Terms, You’re Ahead of 90% of PeopleMaster the core ideas behind AI without getting lost](https://medium.com/towards-artificial-intelligence/if-you-understand-these-5-ai-terms-youre-ahead-of-90-of-people-c7622d353319?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Mar 29 [A clap icon 8KA response icon 161](https://medium.com/towards-artificial-intelligence/if-you-understand-these-5-ai-terms-youre-ahead-of-90-of-people-c7622d353319?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) ![6 brain images](https://miro.medium.com/v2/resize:fit:679/format:webp/1*Q-mzQNzJSVYkVGgsmHVjfw.png) [![Write A Catalyst](https://miro.medium.com/v2/resize:fill:20:20/1*KCHN5TM3Ga2PqZHA4hNbaw.png)](https://medium.com/write-a-catalyst?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) In [Write A Catalyst](https://medium.com/write-a-catalyst?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) by [Dr. Patricia Schmidt](https://medium.com/@creatorschmidt?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [As a Neuroscientist, I Quit These 5 Morning Habits That Destroy Your BrainMost people do \#1 within 10 minutes of waking (and it sabotages your entire day)](https://medium.com/write-a-catalyst/as-a-neuroscientist-i-quit-these-5-morning-habits-that-destroy-your-brain-3efe1f410226?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Jan 14 [A clap icon 46KA response icon 936](https://medium.com/write-a-catalyst/as-a-neuroscientist-i-quit-these-5-morning-habits-that-destroy-your-brain-3efe1f410226?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) ![I Woke Up at 4:30 AM Every Day for 30 Days — Here Is What Nobody Tells You](https://miro.medium.com/v2/resize:fit:679/format:webp/1*0XnPmr19m6XJf9vZ9ojJ-Q.png) [![ILLUMINATION](https://miro.medium.com/v2/resize:fill:20:20/1*AZxiin1Cvws3J0TwNUP2sQ.png)](https://medium.com/illumination?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) In [ILLUMINATION](https://medium.com/illumination?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) by [Sufyan Maan, M.Eng](https://medium.com/@sufyanmaan?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [I Woke Up at 4:30 AM Every Day for 30 Days — Here Is What Nobody Tells YouHere is what actually happened, from someone who did it & tracked everything.](https://medium.com/illumination/i-woke-up-at-4-30-am-every-day-for-30-days-here-is-what-nobody-tells-you-054bf0160903?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Apr 4 [A clap icon 7.3KA response icon 323](https://medium.com/illumination/i-woke-up-at-4-30-am-every-day-for-30-days-here-is-what-nobody-tells-you-054bf0160903?source=post_page---read_next_recirc--ac28bea24291----0---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) ![AI Agents: Complete Course](https://miro.medium.com/v2/resize:fit:679/format:webp/1*PvPPSGJ9779FTWmtK_Yeyw.png) [![Data Science Collective](https://miro.medium.com/v2/resize:fill:20:20/1*0nV0Q-FBHj94Kggq00pG2Q.jpeg)](https://medium.com/data-science-collective?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) In [Data Science Collective](https://medium.com/data-science-collective?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) by [Marina Wyss](https://medium.com/@gratitudedriven?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [AI Agents: Complete CourseFrom beginner to intermediate to production.](https://medium.com/data-science-collective/ai-agents-complete-course-f226aa4550a1?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Dec 6, 2025 [A clap icon 5.6KA response icon 224](https://medium.com/data-science-collective/ai-agents-complete-course-f226aa4550a1?source=post_page---read_next_recirc--ac28bea24291----1---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) ![Vibe Coding is Over illustration of three ai generated landing pages with the words IT’S OVER written at the top in large text](https://miro.medium.com/v2/resize:fit:679/format:webp/1*1OGKfKCooEZbKCSoSXXY8g.png) [![Michal Malewicz](https://miro.medium.com/v2/resize:fill:20:20/1*149zXrb2FXvS_mctL4NKSg.png)](https://medium.com/@michalmalewicz?source=post_page---read_next_recirc--ac28bea24291----2---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [Michal Malewicz](https://medium.com/@michalmalewicz?source=post_page---read_next_recirc--ac28bea24291----2---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [Vibe Coding is OVER.Here’s What Comes Next.](https://medium.com/@michalmalewicz/vibe-coding-is-over-5a84da799e0d?source=post_page---read_next_recirc--ac28bea24291----2---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Mar 24 [A clap icon 4.8KA response icon 175](https://medium.com/@michalmalewicz/vibe-coding-is-over-5a84da799e0d?source=post_page---read_next_recirc--ac28bea24291----2---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) ![A quiet shift in power: Qwen’s open-source AI core emerges from the shadows, challenging the dominance of closed corporate models.](https://miro.medium.com/v2/resize:fit:679/format:webp/1*Xi5NxKh9VaV79bx6OyJ6dg.png) [![Suleiman Tawil](https://miro.medium.com/v2/resize:fill:20:20/1*oej3hyYVseQigyP7zGqFAQ.png)](https://medium.com/@stawils?source=post_page---read_next_recirc--ac28bea24291----3---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [Suleiman Tawil](https://medium.com/@stawils?source=post_page---read_next_recirc--ac28bea24291----3---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [Qwen Just Quietly Became the Most Dangerous Open-Source AI ModelThe most-downloaded AI model family on Earth was built by a small team with fewer resources than its competitors. Then Alibaba restructured…](https://medium.com/@stawils/qwen-just-quietly-became-the-most-dangerous-open-source-ai-model-b5bcf7b2743c?source=post_page---read_next_recirc--ac28bea24291----3---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) Mar 31 [A clap icon 1.6KA response icon 42](https://medium.com/@stawils/qwen-just-quietly-became-the-most-dangerous-open-source-ai-model-b5bcf7b2743c?source=post_page---read_next_recirc--ac28bea24291----3---------------------2e9648d2_397e_44ed_9476_e1643925c47d--------------) [See more recommendations](https://medium.com/?source=post_page---read_next_recirc--ac28bea24291---------------------------------------) [Help](https://help.medium.com/hc/en-us?source=post_page-----ac28bea24291---------------------------------------) [Status](https://status.medium.com/?source=post_page-----ac28bea24291---------------------------------------) [About](https://medium.com/about?autoplay=1&source=post_page-----ac28bea24291---------------------------------------) [Careers](https://medium.com/jobs-at-medium/work-at-medium-959d1a85284e?source=post_page-----ac28bea24291---------------------------------------) [Press](mailto:pressinquiries@medium.com) [Blog](https://blog.medium.com/?source=post_page-----ac28bea24291---------------------------------------) [Privacy](https://policy.medium.com/medium-privacy-policy-f03bf92035c9?source=post_page-----ac28bea24291---------------------------------------) [Rules](https://policy.medium.com/medium-rules-30e5502c4eb4?source=post_page-----ac28bea24291---------------------------------------) [Terms](https://policy.medium.com/medium-terms-of-service-9db0094a1e0f?source=post_page-----ac28bea24291---------------------------------------) [Text to speech](https://speechify.com/medium?source=post_page-----ac28bea24291---------------------------------------)
Readable Markdown
Press enter or click to view image in full size ![](https://miro.medium.com/v2/resize:fit:700/1*wJWdgmMuzHXVoz9PORAxpA.jpeg) [![Peter sawe](https://miro.medium.com/v2/resize:fill:32:32/1*Mr62MUZ7cUxJhyAVaPAHSg.jpeg)](https://medium.com/@sawepeter6?source=post_page---byline--ac28bea24291---------------------------------------) 3 min read Jan 22, 2024 I recently installed Anaconda on my ubuntu 23.10 but every time i try to run the “conda list” or “conda — version” commands on the terminal it throws the error “Conda Command Not Found”. After researching and being stuck on the issue for long i finally found a solution to this error. Below is how to solve this error if your are running on ubuntu or any linux operating system. ## **Error Cause** The terminal throws this error since it does not recognize the “conda” command. The “conda command not found” error occurs whenever the system’s PATH does not include the directory where the “conda” command is installed. This maybe be caused by a number of issues such as incorrect installation. To solve this we have to add the PATH manually. ## **Solution** **Step 1: Anaconda installation verification** Check if you installed Anaconda3 correctly using the following command. > ls ~ By default, anaconda is installed in the home directory. If the installation is correct you should see a directory named “anaconda3” after you run the command. ![ls ~ command execution results](https://miro.medium.com/v2/resize:fit:567/1*n9ejY1A-B__2dr7wF2blEg.png) **Step 2: Conda Executable Location** Using the following command to locate the “conda” executable. By default it is located within the “bin” directory. > ls ~/anaconda3/bin you should see “conda” amongst the list. ![](https://miro.medium.com/v2/resize:fit:567/1*JgWQXRH3kkP4xzHRb5tWMA.png) **Step 3: Add Conda to the System Path** Get Peter sawe’s stories in your inbox Join Medium for free to get updates from this writer. Remember me for faster sign in Here which is the main solution to our problem is configuring the “conda” executable to our system’s PATH. To achieve this we modify either the .bashrc or .bash\_profile. In your terminal, type this command to open the .bashrc file in a text editor > nano ~/.bashrc Add th following line at the end of the file: > export PATH=~/anaconda3/bin:\$PATH ![](https://miro.medium.com/v2/resize:fit:567/1*qef3F0LcASRdMEvVvUlheA.png) Save and close the file. Lastly to save and apply the changes run the following command. > source ~/.bashrc **Step 4: Verify the Solution** This can be done by running the “conda” on the terminal. > conda — version This should display the version of conda. If your get to see this then you have successfully solved the “conda command not found” error. ![](https://miro.medium.com/v2/resize:fit:567/1*2mXC_O2yZ3eaFLgBlqUfWQ.png) **Conclusion** Thanks for checking out this and i hope it helped you solve the error.
Shard77 (laksa)
Root Hash13179037029838926277
Unparsed URLcom,medium!/@sawepeter6/conda-command-not-found-ac28bea24291 s443