Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update faq - can't conda find this package #90

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions learn/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ A [dependency graph](https://en.wikipedia.org/wiki/Dependency_graph) is a tree-l

Each separate conda environment would have its own dependency graph. The items in a dependency graph would be the packages that conda manages and what each of those packages require as a prerequisite to function properly.

## Add Why can't conda find this package that I know exists?

There could be several reasons why Conda is unable to find a package that you know exists. One common reason is that the package is not available in the channel that you are searching in. It's possible that the package was removed from the channel, or that the channel itself is not properly configured.
mhmohona marked this conversation as resolved.
Show resolved Hide resolved

Another possible reason is that you have an outdated or incomplete index of available packages. You can update your index by running "conda update --all" or "conda index". It's also possible that the package you are searching for is not compatible with your operating system or architecture.

Finally, it's possible that there is a problem with your Conda installation or configuration. You can try reinstalling Conda or creating a new environment to see if that resolves the issue.

If none of these suggestions help, you may want to search online for more information about the specific package and any known issues with installing it using Conda.

## How do I submit a blog post to conda.org?

See our [Contributing](https://github.com/conda-incubator/conda-dot-org/blob/main/CONTRIBUTING.md) documentation for more information on submitting blog posts.
Expand Down