cgat-developers / cgat-apps

cgat-apps repository
Other
33 stars 14 forks source link

Error when installing CGAT #74

Closed Rozita1 closed 3 years ago

Rozita1 commented 3 years ago

Hi,

I am trying to install CGAT and I'm getting the following error. Can you please help?

My previous code was: qrshx cd ~ wget https://github.com/cgat-developers/cgat-apps/archive/master.zip mkdir /data/$USER/cgat_install unzip master.zip cd cgat-apps-master ./install.sh --production --location #########################################################

An error occurred in:

Acribbs commented 3 years ago

Hi,

Our preferred method of installing cgat-apps is to use conda:

conda install -c conda-forge -c bioconda cgat-apps

If you would like to install a developmental version onto your local environment then I would suggest:

git clone https://github.com/cgat-developers/cgat-apps.git cd cgat-apps python setup.py develop

However, if you would like to use the install script then the reason for your error in this instance is not specifying the path for installation after the --location flag.

Rozita1 commented 3 years ago

Thank you, just got it installed, finally.