Genesis
Genesis copied to clipboard
I encountered an error related to the Taichi version during installation. The highest version of Taichi I can install is 1.7.1, and the Python version I am using is 3.11.11.
Collecting genesis-world Using cached genesis_world-0.2.0-py3-none-any.whl.metadata (11 kB) Collecting psutil (from genesis-world) Using cached psutil-6.1.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (22 kB) Collecting scikit-image (from genesis-world) Downloading scikit_image-0.25.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (14 kB) INFO: pip is looking at multiple versions of genesis-world to determine which version is compatible with other requirements. This could take a while. Collecting genesis-world Using cached genesis_world-0.1.1-py3-none-any.whl.metadata (11 kB) ERROR: Cannot install genesis-world==0.1.1 and genesis-world==0.2.0 because these package versions have conflicting dependencies.
The conflict is caused by: genesis-world 0.2.0 depends on taichi==1.7.2 genesis-world 0.1.1 depends on taichi==1.7.2
To fix this you could try to:
- loosen the range of package versions you've specified
- remove package versions to allow pip to attempt to solve the dependency conflict
ERROR: ResolutionImpossible: for help visit https://pip.pypa.io/en/latest/topics/dependency-resolution/#dealing-with-dependency-conflicts
I encountered the same issue and successfully installed taichi after switching to python 3.9.6.
We didn't encounter this when testing. @zhenjia-xu Could you take a look?
I had the same issue with python 3.13.1. Switched to 3.9.6 and it installed successfully.
Switched to 3.10 and taichi installed successfully
I had the same error with 3.13.1 but not with 3.12.8
I had the same error with
3.13.1but not with3.12.8
Thanks, solved it for me too. Using pixi and:
pixi init
pixi add python=3.12.8
pixi add pip
pixi shell
pip install genesis-world
... is what worked for me.
(I'm on Linux Mint 21.1)
I have the same issue, tried with python 3.11.11, 3.12.8, 3.9.6, 3.10.16, 3.11.10,3.13.1, unfortunately all do not work :(
I had the same error with
3.13.1but not with3.12.8Thanks, solved it for me too. Using pixi and:
pixi init pixi add python=3.12.8 pixi add pip pixi shell pip install genesis-world... is what worked for me.
(I'm on Linux Mint 21.1)
Can confirm these steps worked on an M3 Mac, starting with: $ brew install pixi
Facing the same issue for python 3.9 ubuntu 20.04. I didn't find the minimum specification (besides python version) in their doc as well, it would be a nice thing to have right in the front page.