From 3f10363b014340a0d5f41e029e7bba3c4d6ae66d Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 14 Nov 2019 12:07:16 +0800 Subject: [PATCH] install-with-conda: explain board packages further --- install-with-conda.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/install-with-conda.py b/install-with-conda.py index 571d705a1..2eab13866 100644 --- a/install-with-conda.py +++ b/install-with-conda.py @@ -9,8 +9,12 @@ CONDA_ENV_NAME = "artiq" # The conda packages to download and install. CONDA_PACKAGES = [ "artiq", + # Only install board packages if you plan to reflash the board. + # The two lines below are just examples and probably not what you want. + # Select the packages that correspond to your board, or remove them + # if you do not intend to reflash the board. "artiq-board-kc705-nist_clock", - "artiq-board-kasli-mitll" + "artiq-board-kasli-wipm" ] # Set to False if you have already set up conda channels ADD_CHANNELS = True