I ran into version compatibility issues between pandas and numpy. I received the following error message when running ./Phylogenomics.py --help:
ImportError: this version of pandas is incompatible with numpy < 1.22.4
your numpy version is 1.22.3.
Please upgrade numpy to >= 1.22.4 to use this pandas version
I corrected this issue by installing the correct version of numpy with the following command:
I ran into version compatibility issues between pandas and numpy. I received the following error message when running ./Phylogenomics.py --help:
ImportError: this version of pandas is incompatible with numpy < 1.22.4 your numpy version is 1.22.3. Please upgrade numpy to >= 1.22.4 to use this pandas version
I corrected this issue by installing the correct version of numpy with the following command:
conda install -c conda-forge numpy=1.22.4