ā¹ļø 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 | 5.8 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://teamtreehouse.com/community/command-not-found-conda |
| Last Crawled | 2025-10-22 14:47:16 (5 months ago) |
| First Indexed | 2021-08-11 07:24:32 (4 years ago) |
| HTTP Status Code | 200 |
| Meta Title | command not found: conda (Example) | Treehouse Community |
| Meta Description | Juliette 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 Canonical | null |
| 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)

- [Watch Video](https://teamtreehouse.com/library/introduction-to-anaconda/miniconda)
[Python](https://teamtreehouse.com/community/topic:python) [miniconda](https://teamtreehouse.com/community/video:97072)
[ .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
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
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>
[ .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 Markdown | null |
| Shard | 167 (laksa) |
| Root Hash | 17654434789099829567 |
| Unparsed URL | com,teamtreehouse!/community/command-not-found-conda s443 |