šŸ•·ļø Crawler Inspector

URL Lookup

Direct Parameter Lookup

Raw Queries and Responses

1. Shard Calculation

Query:
Response:
Calculated Shard: 167 (from laksa187)

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
5 months ago
šŸ¤–
ROBOTS ALLOWED

Page Info Filters

FilterStatusConditionDetails
HTTP statusPASSdownload_http_code = 200HTTP 200
Age cutoffPASSdownload_stamp > now() - 6 MONTH5.8 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://teamtreehouse.com/community/command-not-found-conda
Last Crawled2025-10-22 14:47:16 (5 months ago)
First Indexed2021-08-11 07:24:32 (4 years ago)
HTTP Status Code200
Meta Titlecommand not found: conda (Example) | Treehouse Community
Meta DescriptionJuliette Tworsey is having issues with: Hi Kenneth, I have installed Miniconda3 via the instructions in this tutorial successfully. I have also stopped and restarted my termina...
Meta Canonicalnull
Boilerpipe Text
I'm guessing that conda is not in your path. Perhaps you don't have a .bash_profile so it didn't get added. What happens when you type this into your terminal? If you have it, it should open in TextEdit. If it says you don't have it, create it and open it: touch ~/.bash_profile ; open ~/.bash_profile Then add this and save: PATH=$PATH:$HOME/anaconda/bin Quit and restart terminal. Check that it worked: p.s. You can also use nano instead of open and it will open it in the terminal. I prefer this because TextEdit can add formatting that screws with your code. But TextEdit may be easier to use for a beginner and you can change settings so it doesn't apply formatting. https://stackoverflow.com/questions/30461201/how-do-i-edit-path-bash-profile-on-osx https://stackoverflow.com/questions/18675907/how-to-run-conda
Markdown
You found it first ⚔ [50% off any plan for 6 months](https://teamtreehouse.com/signup_code/hacker50), exclusive to new subscribers for a limited time only. Join the [Treehouse affiliate program](https://join.teamtreehouse.com/affiliates/) and earn 25% recurring commission\! ✨ [Earn college credits](https://join.teamtreehouse.com/college-credit/) in Cybersecurity, JS, HTML, CSS and Python 🌟 Dreaming of a bright future? šŸŽ“ [Ask about the Treehouse Scholarship program\!](mailto:help@teamtreehouse.com?subject=Treehouse%20Scholarship%20Inquiry) šŸš€ - ###### - [Sign In](https://teamtreehouse.com/signin?return_to=%2Fcommunity%2Fcommand-not-found-conda) - [Free Trial](https://teamtreehouse.com/subscribe/new?trial=yes) ## Welcome to the Treehouse Community Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared [here](https://teamtreehouse.com/links). ### Looking to learn something new? Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today. [Start your free trial](https://teamtreehouse.com/subscribe/new?trial=yes) ![](https://ecs-static.teamtreehouse.com/assets/views/marketing/shared/community-banner-white-47072046c51352fe6a69f5e691ff5700b28bb11d45197d7bdf066d9ea3f72d0c.webp) - [Watch Video](https://teamtreehouse.com/library/introduction-to-anaconda/miniconda) [Python](https://teamtreehouse.com/community/topic:python) [miniconda](https://teamtreehouse.com/community/video:97072) [![Juliette Tworsey](https://uploads.teamtreehouse.com/production/profile-photos/2863792/micro_11122545_10206095615647458_3354024474422995578_o.jpg) .a{fill-rule:evenodd;} Juliette Tworsey **Front End Web Development** Techdegree Graduate 32,625 Points](https://teamtreehouse.com/profiles/juliettetworsey) Posted [December 2, 2018 7:16pm](https://teamtreehouse.com/community/command-not-found-conda) by [Juliette Tworsey .a{fill-rule:evenodd;} Juliette Tworsey **Front End Web Development** Techdegree Graduate 32,625 Points](https://teamtreehouse.com/profiles/juliettetworsey) # command not found: conda Hi Kenneth, I have installed Miniconda3 via the instructions in this tutorial successfully. I have also stopped and restarted my terminal, but I am getting an error when trying to run `conda install -n treehouse numpy`: `command not found: conda` I have done some searching around the web, but I cannot seem to find a solution that remedies this. I'm attempting to run the command on a MacOS High Sierra 10.13.6. How can I remedy this? Thank you for this workshop\! Juliette ## 3 Answers ![paul nabende](https://secure.gravatar.com/avatar/efdd6ae9b7061a7915bed7ecb2bf5c64?s=96&d=https%3A%2F%2Fecs-static.teamtreehouse.com%2Fassets%2Fcontent%2Fdefault_avatar-445fbbabfc8dc9188fb5967fe43322ee0c3e0dd1e10f378bf8343784af5a13eb.webp&r=pg) ###### paul nabende 673 Points paul nabende ###### paul nabende 673 Points March 19, 2019 11:08am Just in case someone else is bogged down by this. I faced the same problem, my .bash\_profile had the paths all set by Anaconda but every time I tried `conda` cpmmands it gave me the error **zsh: command not found: conda** . Here is how I solved it ``` cd # this command will take you to the home dir ``` ``` ls -a # this command list all files (hidden ones inlcuded) check if there is a .bash_profile file. # If it does not exist then `touch .bash_profile` in same location ``` ``` open -e .bash_profile # or `nano ~/.bash_profile` if using nano # or `vim ~/.bash_profile` if using vim # this command opens the file with the text editor. If the path to Anaconda exists, simply do source ~/.bash_profile ``` So every other time you stumble on the **zsh: command not found: conda** error just do the command ``` source ~/.bash_profile ``` ![ursaminor](https://uploads.teamtreehouse.com/production/profile-photos/5415492/micro_suprised_koala_eating_leaf.jpg) ###### ursaminor 11,271 Points ursaminor ###### ursaminor 11,271 Points December 2, 2018 9:15pm I'm guessing that conda is not in your path. Perhaps you don't have a `.bash_profile` so it didn't get added. What happens when you type this into your terminal? ``` open ~/.bash_profile ``` If you have it, it should open in TextEdit. If it says you don't have it, create it and open it: ``` touch ~/.bash_profile; open ~/.bash_profile ``` Then add this and save: ``` PATH=$PATH:$HOME/anaconda/bin ``` Quit and restart terminal. Check that it worked: ``` conda --version ``` p.s. You can also use `nano` instead of `open` and it will open it in the terminal. I prefer this because TextEdit can add formatting that screws with your code. But TextEdit may be easier to use for a beginner and you can change settings so it doesn't apply formatting. <https://stackoverflow.com/questions/30461201/how-do-i-edit-path-bash-profile-on-osx> <https://stackoverflow.com/questions/18675907/how-to-run-conda> [![Juliette Tworsey](https://uploads.teamtreehouse.com/production/profile-photos/2863792/micro_11122545_10206095615647458_3354024474422995578_o.jpg) .a{fill-rule:evenodd;} Juliette Tworsey **Front End Web Development** Techdegree Graduate 32,625 Points](https://teamtreehouse.com/profiles/juliettetworsey) [Juliette Tworsey .a{fill-rule:evenodd;} Juliette Tworsey **Front End Web Development** Techdegree Graduate 32,625 Points](https://teamtreehouse.com/profiles/juliettetworsey) December 2, 2018 11:00pm Hi Ursaminor, Thanks so much for responding\! When I run `cat ~/.bash_profile` I can see that the file is there. This is the \$PATH that has been created at the end of the file/script: ``` added by Miniconda3 installer export PATH="/Users/my-fullname/miniconda3/bin:$PATH" ``` Thanks again\! I might try pulling Anaconda as a Docker image instead to see what happens, but first, I'm going to shut down my computer entirely and re-open my terminal again (as simply closing it doesn't seem to be doing the trick). Cheers:-) Juliette Posting to the forum is only allowed for members with active accounts. Please [sign in](https://teamtreehouse.com/signin?return_to=%2Fcommunity%2Fcommand-not-found-conda) or [sign up](https://teamtreehouse.com/subscribe/new?trial=yes) to post. - [About](https://teamtreehouse.com/about) - [Blog](https://blog.teamtreehouse.com/) - [Careers](https://teamtreehouse.com/jobs) - [Community](https://teamtreehouse.com/community) - [Stories](https://teamtreehouse.com/stories) - [Shop](https://teespring.com/stores/teamtreehouse) - [Contact](https://teamtreehouse.com/support) - [Gift Card](https://teamtreehouse.com/giftcard) #### [See Full Catalogue](https://teamtreehouse.com/library) #### [Techdegree](https://teamtreehouse.com/techdegree) - [Front End Web Development](https://teamtreehouse.com/techdegree/front-end-web-development) - [Full Stack JavaScript](https://teamtreehouse.com/techdegree/full-stack-javascript) - [Python Development](https://teamtreehouse.com/techdegree/python-development) - [Data Analysis](https://teamtreehouse.com/techdegree/data-analysis) - [UX Design](https://teamtreehouse.com/techdegree/ux-design) #### Tracks - [Learn to Code for Beginners](https://teamtreehouse.com/tracks/learn-to-code-for-beginners) - [Beginning Python](https://teamtreehouse.com/tracks/beginning-python) - [Beginning SQL](https://teamtreehouse.com/tracks/beginning-sql) - [Beginning Java](https://teamtreehouse.com/tracks/beginning-java) - [...see more](https://teamtreehouse.com/tracks) #### Courses - [JavaScript Basics](https://teamtreehouse.com/library/javascript-basics) - [Intro to HTML & CSS](https://teamtreehouse.com/library/introduction-to-html-and-css) - [Python Basics](https://teamtreehouse.com/library/python-basics) - [CSS Layout](https://teamtreehouse.com/library/css-layout) - [...see more](https://teamtreehouse.com/library) #### Explore - [Plans](https://teamtreehouse.com/plans) - [Affiliates](https://join.teamtreehouse.com/affiliates) - [Perks](https://teamtreehouse.com/perks) - [Free Treehouse Near Me](https://teamtreehouse.com/libraries/find-your-library) - [Treehouse for Libraries](https://join.teamtreehouse.com/libraries/) - [Treehouse for Businesses](https://teamtreehouse.com/teams) [Terms & Conditions](https://teamtreehouse.com/terms) \| [Privacy](https://teamtreehouse.com/privacy) Ā© 2025 Treehouse Island, Inc.
Readable Markdownnull
Shard167 (laksa)
Root Hash17654434789099829567
Unparsed URLcom,teamtreehouse!/community/command-not-found-conda s443