Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.0%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: SWE-Gym-Raw
  • License: other
  • Language: Python
  • Default Branch: main
  • Size: 68.7 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 1 year ago · Last pushed about 1 year ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Codeowners Authors

README.md

Conda Logo

GitHub Scheduled Tests Codecov Status CodSpeed Performance Benchmarks CalVer Versioning
GitHub Release Anaconda Package conda-forge Package

Conda is a cross-platform, language-agnostic binary package manager. It is a package manager used in conda distributions like Miniforge and the Anaconda Distribution, but it may be used for other systems as well. Conda makes environments first-class citizens, making it easy to create independent environments even for C libraries. The conda command line interface is written entirely in Python, and is BSD licensed open source.

Conda is enhanced by organizations, tools, and repositories created and managed by the amazing members of the conda community. Some of them can be found here.

Installation

To bootstrap a minimal distribution, use a minimal installer such as Miniconda or Miniforge.

Conda is also included in the Anaconda Distribution.

Updating conda

To update conda to the newest version, use the following command:

$ conda update -n base conda

[!TIP] It is possible that conda update does not install the newest version if the existing conda version is far behind the current release. In this case, updating needs to be done in stages.

For example, to update from conda 4.12 to conda 23.10.0, conda 22.11.1 needs to be installed first:

$ conda install -n base conda=22.11.1 $ conda update conda

Getting Started

If you install the Anaconda Distribution, you will already have hundreds of packages installed. You can see what packages are installed by running:

bash $ conda list

to see all the packages that are available, use:

bash $ conda search

and to install a package, use

bash $ conda install <package-name>

The real power of conda comes from its ability to manage environments. In conda, an environment can be thought of as a completely separate installation. Conda installs packages into environments efficiently using hard links by default when it is possible, so environments are space efficient, and take seconds to create.

The default environment, which conda itself is installed into, is called base. To create another environment, use the conda create command. For instance, to create an environment with PyTorch, you would run:

bash $ conda create --name ml-project pytorch

This creates an environment called ml-project with the latest version of PyTorch, and its dependencies.

We can now activate this environment:

bash $ conda activate ml-project

This puts the bin directory of the ml-project environment in the front of the PATH, and sets it as the default environment for all subsequent conda commands.

To go back to the base environment, use:

bash $ conda deactivate

Building Your Own Packages

You can easily build your own packages for conda, and upload them to anaconda.org, a free service for hosting packages for conda, as well as other package managers. To build a package, create a recipe. Package building documentation is available here. See AnacondaRecipes for the recipes that make up the Anaconda Distribution and defaults channel. Conda-forge and Bioconda are community-driven conda-based distributions.

To upload to anaconda.org, create an account. Then, install the anaconda-client and login:

bash $ conda install anaconda-client $ anaconda login

Then, after you build your recipe:

bash $ conda build <recipe-dir>

you will be prompted to upload to anaconda.org.

To add your anaconda.org channel, or other's channels, to conda so that conda install will find and install their packages, run:

bash $ conda config --add channels https://conda.anaconda.org/username

(replacing username with the username of the person whose channel you want to add).

Getting Help

Contributing

open in gitpod for one-click development

Contributions to conda are welcome. See the contributing documentation for instructions on setting up a development environment.

Owner

  • Name: SWE-Gym-Raw
  • Login: SWE-Gym-Raw
  • Kind: organization
  • Email: jingmai@pku.edu.cn

Citation (CITATION.cff)

cff-version: 1.2.0
title: "conda: A system-level, binary package and environment manager running on all major
  operating systems and platforms."
message: >-
  If you use this software, please cite it using the metadata from this file.
type: software
authors:
  - name: "conda contributors"
repository-code: "https://github.com/conda/conda"
url: "https://docs.conda.io/projects/conda/"
abstract: >-
  Conda is a cross-platform, language-agnostic binary package manager. It is the package manager
  used by Anaconda installations, but it may be used for other systems as well. Conda makes
  environments first-class citizens, making it easy to create independent environments even for
  C libraries. Conda is written entirely in Python, and is BSD licensed open source.
license: BSD-3-clause

GitHub Events

Total
  • Push event: 1
  • Fork event: 1
  • Create event: 46
Last Year
  • Push event: 1
  • Fork event: 1
  • Create event: 46

Dependencies

.devcontainer/requirements-dev.txt pypi
  • conda-forge * development
docs/requirements.txt pypi
  • Pillow ==10.1.0
  • Sphinx <9
  • boltons ==23.1.1
  • conda-sphinx-theme ==0.2.2
  • linkify-it-py ==2.0.2
  • myst-parser ==2.0.0
  • pluggy ==1.3.0
  • pylint ==3.0.2
  • requests ==2.31.0
  • ruamel.yaml ==0.18.5
  • sphinx-argparse ==0.4.0
  • sphinx-autoapi ==3.0.0
  • sphinx-autobuild ==2021.3.14
  • sphinx-reredirects ==0.1.3
  • sphinx-sitemap ==2.5.1
  • sphinx_design ==0.5.0
  • sphinxcontrib-applehelp ==1.0.7
  • sphinxcontrib-devhelp ==1.0.5
  • sphinxcontrib-htmlhelp ==2.0.4
  • sphinxcontrib-jsmath ==1.0.1
  • sphinxcontrib-mermaid ==0.9.2
  • sphinxcontrib-plantuml ==0.21
  • sphinxcontrib-programoutput ==0.17
  • sphinxcontrib-qthelp ==1.0.6
  • sphinxcontrib-serializinghtml ==1.1.9
  • tqdm >=4
pyproject.toml pypi
  • archspec >=0.2.3
  • boltons >=23.0.0
  • charset-normalizer *
  • conda-libmamba-solver >=24.11.0
  • conda-package-handling >=2.2.0
  • distro >=1.5.0
  • frozendict >=2.4.2
  • jsonpatch >=1.32
  • menuinst >=2
  • packaging >=23.0
  • platformdirs >=3.10.0
  • pluggy >=1.0.0
  • pycosat >=0.6.3
  • requests >=2.28.0,<3
  • ruamel.yaml >=0.11.14,<0.19
  • setuptools >=60.0.0
  • tqdm >=4
  • truststore >=0.8.0; python_version>='3.10'
  • zstandard >=0.15
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/Automat-0.7.0-py2.7.egg-info/requires.txt pypi
  • Twisted >=16.1.1 test
  • attrs >=16.1.0 test
  • graphviz >0.5.1 test
  • six * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/Babel-2.6.0-py2.7.egg-info/requires.txt pypi
  • pytz >=0a test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/CherryPy-17.2.0-py2.7.egg-info/requires.txt pypi
  • alabaster * test
  • backports.unittest_mock * test
  • cheroot >=6.2.4 test
  • codecov * test
  • coverage * test
  • docutils * test
  • flup * test
  • jaraco.packaging >=3.2 test
  • more_itertools * test
  • objgraph * test
  • path.py * test
  • portend >=2.1.1 test
  • pyOpenSSL * test
  • pypiwin32 ==219 test
  • pytest >=2.8 test
  • pytest-cov * test
  • pytest-sugar * test
  • python-memcached >=1.58 test
  • pywin32 * test
  • requests_toolbelt * test
  • routes >=2.3.1 test
  • rst.linker >=1.9 test
  • simplejson * test
  • six >=1.11.0 test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/Django-1.11.15-py2.7.egg-info/requires.txt pypi
  • argon2-cffi >=16.1.0 test
  • bcrypt * test
  • pytz * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/PyHamcrest-1.9.0-py2.7.egg-info/requires.txt pypi
  • setuptools * test
  • six * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/PyJWT-1.6.4-py2.7.egg-info/requires.txt pypi
  • cryptography >=1.4 test
  • flake8 * test
  • flake8-import-order * test
  • pep8-naming * test
  • pytest <4,>3 test
  • pytest-cov * test
  • pytest-runner * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/Scrapy-1.5.1-py2.7.egg-info/requires.txt pypi
  • PyDispatcher >=2.0.5 test
  • PyPyDispatcher >=2.1.0 test
  • Twisted >=13.1.0 test
  • cssselect >=0.9 test
  • lxml * test
  • parsel >=1.1 test
  • pyOpenSSL * test
  • queuelib * test
  • service_identity * test
  • six >=1.5.2 test
  • w3lib >=1.17.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/Twisted-18.7.0-py2.7.egg-info/requires.txt pypi
  • Automat >=0.3.0 test
  • PyHamcrest >=1.9.0 test
  • appdirs >=1.4.0 test
  • attrs >=17.4.0 test
  • constantly >=15.1 test
  • cryptography >=1.5 test
  • h2 <4.0,>=3.0 test
  • hyperlink >=17.1.1 test
  • idna * test
  • incremental >=16.10.1 test
  • priority <2.0,>=1.1.0 test
  • pyasn1 * test
  • pydoctor >=16.2.0 test
  • pyflakes >=1.0.0 test
  • pyobjc-core * test
  • pyobjc-framework-CFNetwork * test
  • pyobjc-framework-Cocoa * test
  • pyopenssl >=16.0.0 test
  • pyserial >=3.0 test
  • python-subunit * test
  • pywin32 * test
  • service_identity * test
  • soappy * test
  • sphinx >=1.3.1 test
  • towncrier >=17.4.0 test
  • twisted-dev-tools >=0.0.2 test
  • twistedchecker >=0.4.0 test
  • zope.interface >=4.4.2 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/attrs-18.1.0-py2.7.egg-info/requires.txt pypi
  • coverage * test
  • hypothesis * test
  • pympler * test
  • pytest * test
  • six * test
  • sphinx * test
  • zope.interface * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/backports.functools_lru_cache-1.5-py2.7.egg-info/requires.txt pypi
  • collective.checkdocs * test
  • jaraco.packaging >=3.2 test
  • pytest >=2.8 test
  • rst.linker >=1.9 test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/backports.pdb-1.0.2-py2.7.egg-info/requires.txt pypi
  • collective.checkdocs * test
  • jaraco.packaging >=3.2 test
  • pytest >=2.8 test
  • pytest-sugar * test
  • rst.linker >=1.9 test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/cffi-1.11.5-py2.7.egg-info/requires.txt pypi
  • pycparser * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/cheroot-6.4.0-py2.7.egg-info/requires.txt pypi
  • alabaster * test
  • backports.functools_lru_cache * test
  • backports.unittest_mock * test
  • codecov * test
  • collective.checkdocs * test
  • coverage * test
  • docutils * test
  • jaraco.packaging >=3.2 test
  • more_itertools >=2.6 test
  • pytest >=2.8 test
  • pytest-cov * test
  • pytest-sugar * test
  • pytest-testmon >=0.9.7 test
  • pytest-watch * test
  • rst.linker >=1.9 test
  • six >=1.11.0 test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/cryptography-2.3.1-py2.7.egg-info/requires.txt pypi
  • asn1crypto >=0.21.0 test
  • cffi * test
  • cryptography_vectors ==2.3.1 test
  • doc8 * test
  • enum34 * test
  • flake8 * test
  • flake8-import-order * test
  • hypothesis >=1.11.4 test
  • idna >=2.1 test
  • ipaddress * test
  • iso8601 * test
  • pep8-naming * test
  • pretend * test
  • pyenchant >=1.6.11 test
  • pytest * test
  • pytz * test
  • readme_renderer >=16.0 test
  • six >=1.4.1 test
  • sphinx >=1.6.5 test
  • sphinx_rtd_theme * test
  • sphinxcontrib-spelling >=4.0.1 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/dask-0.18.2-py2.7.egg-info/requires.txt pypi
  • cloudpickle >=0.2.1 test
  • distributed >=1.22 test
  • numpy >=1.11.0 test
  • pandas >=0.19.0 test
  • partd >=0.3.8 test
  • toolz >=0.7.3 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/django_phonenumber_field-2.0.1-py2.7.egg-info/requires.txt pypi
  • Django >=1.11.3 test
  • babel * test
  • phonenumbers >=7.0.2 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/django_twilio-0.9.2-py2.7.egg-info/requires.txt pypi
  • Django <1.9,>=1.8 test
  • Django <2.2,>=1.8 test
  • Django <2.2,>=2.1 test
  • Django <2,>=1.8 test
  • django-phonenumber-field >=0.6 test
  • setuptools >=36.2 test
  • twilio <7,>=6.3.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/entrypoints-0.2.3-py2.7.egg-info/requires.txt pypi
  • configparser >=3.5 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/h5py-2.8.0-py2.7.egg-info/requires.txt pypi
  • numpy >=1.7 test
  • six * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/hdf5storage-0.1.15-py2.7.egg-info/requires.txt pypi
  • h5py <2.4,>=2.1 test
  • h5py >=2.1 test
  • h5py <2.7,>=2.1 test
  • numpy <1.6.0 test
  • numpy <1.12.0 test
  • numpy * test
  • numpy <1.8.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/hyperlink-18.0.0-py2.7.egg-info/requires.txt pypi
  • idna >=2.5 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/incremental-17.5.0-py2.7.egg-info/requires.txt pypi
  • click >=6.0 test
  • twisted >=16.4.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/jaraco.functools-1.20-py2.7.egg-info/requires.txt pypi
  • backports.functools_lru_cache >=1.0.3 test
  • backports.unittest_mock * test
  • collective.checkdocs * test
  • jaraco.classes * test
  • jaraco.packaging >=3.2 test
  • more_itertools * test
  • pytest >=2.8 test
  • pytest-flake8 * test
  • pytest-sugar >=0.9.1 test
  • rst.linker >=1.9 test
  • six * test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/keyring-13.2.1-py2.7.egg-info/requires.txt pypi
  • collective.checkdocs * test
  • entrypoints * test
  • jaraco.packaging >=3.2 test
  • pytest >=3.5 test
  • pytest-flake8 * test
  • pytest-sugar >=0.9.1 test
  • pywin32-ctypes * test
  • rst.linker >=1.9 test
  • secretstorage <3 test
  • secretstorage * test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/lxml-4.2.4-py2.7.egg-info/requires.txt pypi
  • BeautifulSoup4 * test
  • Cython >=0.26.1 test
  • cssselect >=0.7 test
  • html5lib * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/more_itertools-4.3.0-py2.7.egg-info/requires.txt pypi
  • six <2.0.0,>=1.0.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/parsel-1.5.0-py2.7.egg-info/requires.txt pypi
  • cssselect >=0.9 test
  • functools32 * test
  • lxml >=2.3 test
  • six >=1.5.2 test
  • w3lib >=1.8.0 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/pip-8.1.2-py2.7.egg-info/requires.txt pypi
  • mock * test
  • pretend * test
  • pytest * test
  • scripttest >=1.3 test
  • virtualenv >=1.10 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/portend-2.3-py2.7.egg-info/requires.txt pypi
  • collective.checkdocs * test
  • jaraco.packaging >=3.2 test
  • pytest >=3.5 test
  • pytest-flake8 * test
  • pytest-sugar >=0.9.1 test
  • rst.linker >=1.9 test
  • sphinx * test
  • tempora >=1.8 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/pyOpenSSL-18.0.0-py2.7.egg-info/requires.txt pypi
  • cryptography >=2.2.1 test
  • flaky * test
  • pretend * test
  • pytest >=3.0.1 test
  • six >=1.5.2 test
  • sphinx * test
  • sphinx_rtd_theme * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/pyasn1_modules-0.2.2-py2.7.egg-info/requires.txt pypi
  • pyasn1 <0.5.0,>=0.4.1 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/requests-2.19.1-py2.7.egg-info/requires.txt pypi
  • PySocks * test
  • certifi >=2017.4.17 test
  • chardet <3.1.0,>=3.0.2 test
  • cryptography >=1.3.4 test
  • idna <2.8,>=2.5 test
  • idna >=2.0.0 test
  • pyOpenSSL >=0.14 test
  • urllib3 <1.24,>=1.21.1 test
  • win_inet_pton * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/service_identity-17.0.0-py2.7.egg-info/requires.txt pypi
  • attrs * test
  • idna * test
  • pyasn1 * test
  • pyasn1-modules * test
  • pyopenssl >=0.12 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/tempora-1.13-py2.7.egg-info/requires.txt pypi
  • backports.unittest_mock * test
  • collective.checkdocs * test
  • freezegun * test
  • jaraco.functools >=1.20 test
  • jaraco.packaging >=3.2 test
  • pytest >=3.5 test
  • pytest-flake8 * test
  • pytest-sugar >=0.9.1 test
  • pytz * test
  • rst.linker >=1.9 test
  • six * test
  • sphinx * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/tox-3.2.1-py2.7.egg-info/requires.txt pypi
  • pluggy <1,>=0.3.0 test
  • py <2,>=1.4.17 test
  • pytest <4,>=3.0.0 test
  • pytest-cov <3,>=2.5.1 test
  • pytest-mock <2,>=1.10.0 test
  • pytest-randomly <2,>=1.2.3 test
  • pytest-timeout <2,>=1.3.0 test
  • pytest-xdist <2,>=1.22.2 test
  • setuptools >=30.0.0 test
  • six <2,>=1.0.0 test
  • sphinx <2,>=1.7.5 test
  • towncrier >=18.5.0 test
  • virtualenv >=1.11.2 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/traceback2-1.4.0-py2.7.egg-info/requires.txt pypi
  • linecache2 * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/twilio-6.16.1-py2.7.egg-info/requires.txt pypi
  • PyJWT >=1.4.2 test
  • pysocks * test
  • pytz * test
  • requests >=2.0.0 test
  • six * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/unittest2-1.1.0-py2.7.egg-info/requires.txt pypi
  • six >=1.4 test
  • traceback2 * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/urllib3-1.23-py2.7.egg-info/requires.txt pypi
  • PySocks * test
  • certifi * test
  • cryptography >=1.3.4 test
  • idna >=2.0.0 test
  • ipaddress * test
  • pyOpenSSL >=0.14 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/w3lib-1.19.0-py2.7.egg-info/requires.txt pypi
  • six >=1.4.1 test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/wheel-0.31.1-py2.7.egg-info/requires.txt pypi
  • ed25519ll * test
  • keyring * test
  • keyrings.alt * test
  • pytest >=3.0.0 test
  • pytest-cov * test
  • pyxdg * test
tests/data/env_metadata/py27-osx-no-binary/lib/python2.7/site-packages/zope.interface-4.5.0-py2.7.egg-info/requires.txt pypi
  • Sphinx * test
  • coverage * test
  • nose * test
  • repoze.sphinx.autointerface * test
  • setuptools * test
  • zope.event * test
tests/env/support/advanced-pip/another-project-requirements.txt pypi
  • six * test
tests/env/support/advanced-pip/environment.yml pypi
  • xmltodict ==0.10.2
tests/env/support/advanced-pip/module_to_install_in_editable_mode/setup.py pypi
tests/env/support/example/environment.yml pypi
tests/env/support/example-yaml/environment.yaml pypi
tests/env/support/foo/environment.yml pypi
tests/env/support/requirements.txt pypi
  • conda-package-handling ==2.2.0 test
tests/env/support/saved-env/environment.yml pypi
tests/requirements-Linux.txt pypi
  • patchelf * test
tests/requirements-Windows.txt pypi
  • pywin32 * test
tests/requirements-benchmarks.txt pypi
  • conda-forge * test
tests/requirements-ci.txt pypi
  • anaconda-client * test
  • conda-forge * test
  • coverage * test
  • flask >=2.2 test
  • git * test
  • pexpect * test
  • pip * test
  • pytest * test
  • pytest-cov * test
  • pytest-mock * test
  • pytest-rerunfailures * test
  • pytest-timeout * test
  • responses * test
  • tomli * test
  • werkzeug >=2.2 test
tests/requirements-s3.txt pypi
  • boto3 * test
  • conda-forge * test
tests/requirements-truststore.txt pypi
  • truststore >=0.8.0 test
tests/requirements.txt pypi
  • archspec >=0.2.3 test
  • boltons >=23.0.0 test
  • charset-normalizer * test
  • conda-content-trust >=0.2.0 test
  • conda-libmamba-solver >=24.11.0 test
  • conda-package-handling >=2.2.0 test
  • distro >=1.5.0 test
  • frozendict >=2.4.2 test
  • jsonpatch >=1.32 test
  • menuinst >=2 test
  • packaging >=23.0 test
  • platformdirs >=3.10.0 test
  • pluggy >=1.0.0 test
  • pycosat >=0.6.3 test
  • python >=3.9 test
  • requests >=2.28.0,<3 test
  • ruamel.yaml >=0.11.14,<0.19 test
  • setuptools >=60.0.0 test
  • setuptools_scm * test
  • tqdm >=4 test
  • zstandard >=0.15 test