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

Initial FAQ page #43

Merged
merged 5 commits into from
Feb 7, 2023
Merged
Show file tree
Hide file tree
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
39 changes: 39 additions & 0 deletions docs/faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
sidebar_position: 2
---

# Frequently asked questions

## What is conda-forge?

Conda-forge is a community-led GitHub organization that provides access to thousands of conda package recipes. All of these recipes are open source and can be installed with the conda package manager by specifying conda-forge as the channel.

## What is a feedstock?

A feedstock is a conda package repository.

## How can I search for packages?

There are many ways to search for packages, either in your browser or in the command line. Many package organizations keep lists of their packages on their websites, so you can either use a search engine or go directly to package organization websites like [conda-forge.org](conda-forge.org) and [bioconda.github.io](bioconda.github.io). Anaconda also provides package hosting on [anaconda.org](anaconda.org).
beeankha marked this conversation as resolved.
Show resolved Hide resolved

If you want to use conda to search for packages, use the command `conda search`. Enter `conda search -h` for more information.

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

<!-- TO DO: Write this answer -->

## How do I create a package?

<!-- TO DO: Write this answer -->

## What is the difference between `conda create` and `conda env create`?

<!-- TO DO: Write this answer -->

## 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.

## I see a problem with the website. How do I report it?

Please create an [issue](https://github.com/conda-incubator/conda-dot-org/issues) in GitHub to report any problems with the website. We also welcome pull requests!
6 changes: 4 additions & 2 deletions docs/intro.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 2
sidebar_position: 1
---

# What is conda?
Expand All @@ -11,4 +11,6 @@ You will see the term `conda` thrown around in different contexts:
* `conda` is the original package management command-line tool
* conda packages ...

WIP
WIP

[FAQ](faq)