dereneaton / ipyrad

Interactive assembly and analysis of RAD-seq data sets
http://ipyrad.readthedocs.io
GNU General Public License v3.0
72 stars 41 forks source link

tetrad install in python 3.8.12 #534

Closed tsm-tsm closed 1 year ago

tsm-tsm commented 1 year ago

Hi there- I have an issue with installing teted, error with python (3.8.12):

(tetrad) ug1297@gs12:~$ conda install tetrad -c eaton-lab -c conda-forge

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.
failed
UnsatisfiableError: The following specifications were found to be incompatible with the existing python installation in your environment:

Specifications:

Your python: python=3.10

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:

Your installed version is: 2.27

Note that strict channel priority may have removed packages required for satisfiability.

Thanks!

isaacovercast commented 1 year ago

Tetrad requires a python 3.7. You can create a new conda env with this version like this. I just tested this and it works:

conda create -n tetrad python=3.7
conda activate tetrad
conda install tetrad -c conda-forge -c eaton-lab