From b495252ed07a1cdcc640c07426d4534cc8a1390d Mon Sep 17 00:00:00 2001 From: Ryan Volz Date: Fri, 11 Feb 2022 11:35:25 -0500 Subject: [PATCH] Update README to recommend upgrades using more reliable lockfile method. --- README.md | 36 +++++++++++++++++++++++------------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 6750935..0d9b0ab 100644 --- a/README.md +++ b/README.md @@ -105,19 +105,7 @@ Once you have radioconda installed, you can stay up to date for all packages wit To install the latest release in particular, run - mamba install -c ryanvolz --only-deps radioconda python - -(You need to add `python` to the package list so that it can be upgraded if necessary.) - -### Install a particular release - -To install a particular release version, substitute the desired version number and run - - mamba install -c ryanvolz --only-deps radioconda=20NN.NN.NN python - -### Install from environment lock file - -You can also install from the released environment lock file (on Windows): +(on Windows): mamba install --file https://github.com/ryanvolz/radioconda/releases/latest/download/radioconda-win-64.lock @@ -125,6 +113,28 @@ You can also install from the released environment lock file (on Windows): mamba install --file https://github.com/ryanvolz/radioconda/releases/latest/download/radioconda-$(conda info | sed -n -e 's/^.*platform : //p').lock +### Install a particular release + +To install a particular release version, substitute the desired version number and run + +(on Windows): + + mamba install --file https://github.com/ryanvolz/radioconda/releases/download/20NN.NN.NN/radioconda-win-64.lock + +(on Linux/macOS): + + mamba install --file https://github.com/ryanvolz/radioconda/releases/download/20NN.NN.NN/radioconda-$(conda info | sed -n -e 's/^.*platform : //p').lock + +### Install from radioconda metapackage + +If you're starting with a fresh environment or are comfortable dealing with package conflicts, you can install the latest release using the `radioconda` metapackage from the `ryanvolz` channel: + + mamba install -c ryanvolz --only-deps radioconda + +To install a particular release version, substitute the desired version number and run + + mamba install -c ryanvolz --only-deps radioconda=20NN.NN.NN + ## Additional Installation for Device Support To use particular software radio devices, it might be necessary to install additional drivers or firmware. Find your device below and follow the instructions. (Help add to this section by filing an issue if the instructions don't work or you have additional instructions to add!)