Entering edit mode
2.3 years ago
Sudeep
•
0
Hi, I am new to using the Linux terminal in Windows and I tried to install the Trim Galore package using Anaconda3 but keep getting this error:
(base) skhadka@DESKTOP-92U9DF6:~$ conda install -c bioconda trim-galore
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: |
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
UnsatisfiableError: The following specifications were found to be incompatible with each other:
Output in format: Requested package -> Available versionsThe following specifications were found to be incompatible with your system:
- feature:/linux-64::__glibc==2.35=0
- feature:|@/linux-64::__glibc==2.35=0
Your installed version is: 2.35
Has anyone resolved this issue or will help me with it? Thanks in advance!!
Try with
conda install -c bioconda -c conda-forge -c anaconda trim-galore
.Hi Arup Thanks for your response. Its showing the same issue.
Rather than installing in base create another environment for
trim-galore
.It worked. Thank you very much!!