@selefant1 You may want to try the following
- Navigate to the directory where you wish to install CryoSPARC
- Remove the
cryosparc_master/
directory from a previous failed installation, if it exists. - Extract
cryosparc_master.tar.gz
- Then run
conda deactivate # just in case PORTN=99999 # replace with actual port LICENSE_ID="xxxxx" # replace with actual license ID env -i ./install.sh --license ${LICENSE_ID} --port ${PORTN} 2>&1 | tee install_master.out
If this does not work:
- Remove the
cryosparc_master/
directory from the failed installation. - Again extract
cryosparc_master.tar.gz
. - From the lower half of the file
remove the linescryosparc_master/deps_bundle_hashes/python/install_python.sh
source ${CRYOSPARC_ROOT_DIR}/deps/anaconda/etc/profile.d/conda.sh conda config --file "$conda_config_file" --set auto_update_conda False conda config --file "$conda_config_file" --set pip_interop_enabled True conda config --file "$conda_config_file" --set channel_priority flexible
- Run the commands
conda deactivate # just in case PORTN=99999 # replace with actual port LICENSE_ID="xxxxx" # replace with actual license ID env -i ./install.sh --license ${LICENSE_ID} --port ${PORTN} 2>&1 | tee install_master2.out
Any luck?
The purpose of the tee
commands is to preserve the outputs for analysis in case neither approach works.