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!