Error: No license ID provided

I did the following but I am getting this error “Error: No license ID provided.” when trying to install for a single workstation (Rocky v9):

$ export LICENSE_ID=“79**********************************fc0”
$ curl -L https://get.cryosparc.com/download/master-latest/$LICENSE_ID -o cryosparc_master.tar.gz
$ curl -L https://get.cryosparc.com/download/worker-latest/$LICENSE_ID -o cryosparc_worker.tar.gz
$ tar -xf cryosparc_master.tar.gz cryosparc_master
$ tar -xf cryosparc_worker.tar.gz cryosparc_worker
$ cd cryosparc_master
$ ./install.sh
Error: No license ID provided.

Some troubleshooting after seeing this error:

$ echo $LICENSE_ID
79**********************************fc0
$ curl https_get.cryosparc.com/checklicenseexists/$LICENSE_ID
{“success”: true}

Then I check the install.sh file and I see this:

$ vi ./install.sh

DOBASHRC=false
LICENSE_ID="none"
DB_PATH="$(dirname “$ROOT_DIR”)"/cryosparc_database

Why is my License ID not there?

Some additional info:
I am not running conda in this user account

Any help appreciated!

--license is one of the required arguments of the install.sh script. You may need to provide other arguments in addition to --license.

wtempel - Of course and thank you! I was assuming I just had run ./install.sh and I would then be prompted to enter the variables for each argument.

All arguments have been filled in according to the instructions and it’s installing.

Best!

1 Like