Closed IvolgaDmitriy closed 4 months ago
I faced with the same issue.
Hey, looks like there's a token permission issue preventing it from being released to PyPi but I triggered a rebuild which used Numpy 2 and the wheels from the release appear to work: https://github.com/BerkeleyAutomation/python-fcl/releases/tag/v0.7.0.7
Thank you very much! The wheels are working. We are waiting for the release on pipy.
Problem description
When creating a new virtual environment,
pip install trimesh[all]
was fully installed to use the collision module. Code usingtrimesh.collision.The CollisionManager
did not start. When working in detail with the environment, an error occurred when installingpython-fcl
:The problem disappears only when you pre-install numpy with version 1.*
Steps to reproduce the problem:
pip install python-fcl
import fcl
or
pip install numpy
pip install python-fcl
import fcl
Mediocre solution
pip install numpy==1.*
pip install python-fcl
Thank you in advance