Hello folks,
I am now trying to conduct network analysis using q2-SCNIC plug in and q2-SCNIC is available via bioconda. Hence, I commanded as below but the message is saying that my python version is not compatible.
conda install -c lozuponelab q2-SCNIC
Error message : UnsatisfiableError: The following specifications were found
to be incompatible with the existing python installation in your environment:
Specifications:
q2-scnic -> python=3.5
Your python: python=3.8.13
If python is on the left-most side of the chain, that's the version you've asked for.
When python appears to the right, that indicates that the thing on the left is somehow
not available for the python version you are constrained to. Note that conda will not
change your python version to a different minor version unless you explicitly specify
that.
The following specifications were found to be incompatible with your system:
feature:/linux-64::__glibc==2.27=0
feature:|@/linux-64::__glibc==2.27=0
Your installed version is: 2.27
My question is - How can I change my default python version (from upper to lower) in Ubuntu OS using virtual machine ? I am not familiar with this Linux virtual machine environment.
I've tried update my Linux and install python 3.5 as below
sudo apt-get update
sudo apt-get install python3.5
and python 3.5 was successfully instal
led.
However, when I check my python version, it's 3.8 as below
python --version
Python 3.8.13
How can I choose the python version using command ?
Thank you
Thanks, I've tried the command "onda create -n SCNIC -c lozuponelab q2-SCNIC" and, got this error message.
What would be another suggestion ?