-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Conda info #1269
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
Closed
Closed
Conda info #1269
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
18cc471
updated conda section
PythonCHB ef6188a
Update source/key_projects.rst
PythonCHB 79390f0
fixed typo
PythonCHB 947d2cd
shorten list of langes supported by conda in key_projects.rst
PythonCHB 6349e52
Merge branch 'main' into main
PythonCHB d0b619d
Update source/key_projects.rst
willingc 9acc905
Update source/key_projects.rst
willingc 189be2f
Update source/key_projects.rst
willingc b4d13a0
Update source/key_projects.rst
willingc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -379,26 +379,31 @@ conda | |
|
|
||
| :doc:`Docs <conda:index>` | ||
|
|
||
| conda is the package management tool for `Anaconda | ||
| <https://docs.anaconda.com/anaconda/>`__ Python installations. | ||
| Anaconda Python is a distribution from `Anaconda, Inc | ||
| conda is a package, dependency, and environment management system for any language — Python, R, | ||
| Ruby, C/C++, Fortran, and more. It is written in Python and | ||
| widely used in the Python scientific computing community, due to its support for non-Python | ||
| compiled libraries and extensions. It is used as the basis of the `Anaconda | ||
| <https://docs.anaconda.com/anaconda/>`__ Python distribution from `Anaconda, Inc. | ||
| <https://www.anaconda.com/products/individual>`__ specifically aimed at the scientific | ||
| community, and in particular on Windows where the installation of binary | ||
| extensions is often difficult. | ||
| community, but can also be used on its own, or with the | ||
| :doc:`miniconda <conda:miniconda>` distribution. It is available | ||
| for Windows, Mac and Linux systems. | ||
|
|
||
| Conda is a completely separate tool from :ref:`pip`, virtualenv and wheel, but provides | ||
| many of their combined features in terms of package management, virtual environment | ||
| management and deployment of binary extensions. | ||
|
|
||
| Conda does not install packages from PyPI and can install only from | ||
| the official Anaconda repositories, or anaconda.org (a place for | ||
| user-contributed *conda* packages), or a local (e.g. intranet) package | ||
| server. However, note that :ref:`pip` can be installed into, and work | ||
| side-by-side with conda for managing :term:`distributions | ||
| <Distribution Package>` from PyPI. Also, `conda skeleton | ||
| <https://docs.conda.io/projects/conda-build/en/latest/user-guide/tutorials/build-pkgs-skeleton.html>`__ | ||
| is a tool to make Python packages installable by conda by first | ||
| fetching them from PyPI and modifying their metadata. | ||
| many of their combined features, such as package management, virtual environment | ||
| management and deployment of binary extensions and other binary code. | ||
|
|
||
| Conda does not install packages from PyPI -- it can only manage packages built specifically | ||
| for conda, which can be made available on a "conda channel", such as those hosted on | ||
| `anaconda.org <https://anaconda.org/>`_ or a local (e.g. intranet) package server. In addition | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure why this link is failing linkcheck. I would correct but I'm not sure what the difference is between anaconda.org and anaconda.com. Are they using both? |
||
| to the "default" channels managed by `Anaconda, Inc <https://www.anaconda.com/>`_, there are | ||
| a wide variety of packages from the community supported | ||
| `conda-forge project <https://conda-forge.org/>`__ | ||
|
|
||
| Note that :ref:`pip` can be installed into, and work side-by-side with conda | ||
| for managing :term:`distributions <Distribution Package>` from PyPI. It is also possible | ||
| to build conda packages from Python source packages using tools provided by conda. | ||
|
|
||
|
|
||
| .. _devpi: | ||
|
|
||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since I have seen this is common practice, could you also link to the GitHub repository, issues page and PyPI page?