ria-core
Radio Intelligence Apps' open-source core, by Qoherent π‘π
File Explorer
- bug-report.md
- config.yml
- feature-request.md
- build-codecov.yml
- build-docs.yml
- format.yml
- sphinx.yml
- CODE_OF_CONDUCT.md
- CODING.md
- CONTRIBUTING.md
- DIVERSITY_STATEMENT.md
- PULL_REQUEST_TEMPLATE.md
- SECURITY.md
- layout.html
- logo-dark.png
- qoherent.png
- qoherent_bg.png
- riacore.png
- index.rst
- contribution.rst
- getting_started.rst
- index.rst
- installation.rst
- index.rst
- riahub.rst
- riaran.rst
- index.rst
- index.rst
- conf.py
- index.rst
- CNAME
- make.bat
- Makefile
- __init__.py
- __init__.py
- print_version_info.py
- __init__.py
- __init__.py
- __init__.py
- __init__.py
- commands.py
- __init__.py
- commands.py
- __init__.py
- commands.py
- __init__.py
- commands.py
- __init__.py
- cli.py
- __init__.py
- __init__.py
- __init__.py
- __init__.py
- .gitignore
- codecov.yml
- LICENSE
- meta.yaml
- poetry.lock
- pyproject.toml
- README.md
- tox.ini
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
conda install
View Details βΌ
conda install
Install packages into an existing conda environment.
conda install {{package1 package2 ...}}
Install one or more package into the currently active conda environment:
conda install {{[-c|--channel]}} conda-forge {{package}}
Install a single package into the currently active conda environment using channel conda-forge:
conda install {{[-c|--channel]}} conda-forge --override-channels {{package}}
Install a single package into the currently active conda environment using channel conda-forge and ignoring other channels:
pip install
View Details βΌ
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
