rrazaghi / modbamtools

Set of tools to manipulate and visualize modified base bam files
Apache License 2.0
47 stars 4 forks source link

Installation issue /modbamtools #39

Open Jordi0102 opened 10 months ago

Jordi0102 commented 10 months ago

~pip install modbamtools ERROR: Ignored the following versions that require a different python version: 0.1.0 Requires-Python >=3.6, <=3.8.12; 0.1.3 Requires-Python >=3.6, <=3.8.12; 0.1.4 Requires-Python >=3.6, <=3.8.12; 0.2.0 Requires-Python >=3.6, <=3.8.12; 0.2.2 Requires-Python >=3.6, <=3.8.12; 0.3.1 Requires-Python >=3.8, <=3.8.12; 0.3.2 Requires-Python >=3.8, <=3.8.12; 0.4.0 Requires-Python >=3.8, <=3.8.12; 0.4.1 Requires-Python >=3.8, <=3.8.12; 0.4.2 Requires-Python >=3.8, <=3.8.12; 0.4.3 Requires-Python >=3.8, <=3.8.12; 0.4.4 Requires-Python >=3.8, <=3.8.12; 0.4.5 Requires-Python >=3.8, <=3.8.12; 0.4.6 Requires-Python >=3.8, <=3.8.12; 0.4.8 Requires-Python >=3.8, <=3.10.5 ERROR: Could not find a version that satisfies the requirement modbamtools (from versions: none) ERROR: No matching distribution found for modbamtools

This is what I see when I try to install modbamtools on linux Ubunto Python version 3.10.12 Conda version 23.3.1

If anyone can help me, I will apreciate it

pwh124 commented 10 months ago

Hi Jordi,

This is because modbamtools won't install on python versions > 3.8.

One way you can solve this is setting up a clean conda environment, if you are familiar with doing that.

conda create -n modbamtools python=3.8
conda activate modbamtools
python -m pip install modbamtools