I am trying to install the pairtools (https://github.com/mirnylab/pairtools) package on Mac terminal using the following command:
conda install -c conda-forge -c bioconda pairtools
When I run this I am getting the following error message:
Collecting package metadata (current_repodata.json): done
Solving environment: failed
Collecting package metadata (repodata.json): done
Solving environment: failed
UnsatisfiableError: The following specifications were found to be incompatible with each other:
- pip -> python[version='>=3.6,<3.7.0a0']
Is this a version problem? The current version of python I have is 3.7.3. How do I correct this problem? Any help would be greatly appreciated. Thanks!
I updated the packages before running the above command by: conda update anaconda and conda update --all
conda create -n newenvname ...instead ofconda install ...?conda create -n newenv python=3.7.2; conda activate newenv; conda install -y -c conda-forge -c bioconda pairtools; conda deactivate newenv.