triangle
triangle copied to clipboard
Pip install of latest version fails for intel mac with python 3.9
% pip install triangle==20220202 1 ↵ ✹ ✭
ERROR: Could not find a version that satisfies the requirement triangle==20220202 (from versions: 2013.01.06.linux-x86_64, 0.1, 0.2, 0.3, 2012.7.4, 2013.1.6a0, 2013.1.6, 2013.1.7, 2013.4.5, 2015.3.28, 2015.12.13, 2015.12.14, 20160202, 20160203, 20170106, 20170429, 20190115, 20190115.1, 20190115.2, 20190115.3, 20200325, 20200404, 20200424)
ERROR: No matching distribution found for triangle==20220202
However, installing version 20200424
works fine, and building the most recent version from source works fine: pip install git+https://github.com/drufat/triangle.git
. I believe that if you just resumed uploading the source tarball to pypi, it would work properly without needing to build more wheels.
Thanks for the comment! the git installation command works for me
The workaround sort of works for me, however, with pip 21 or 22 (don't work) vs 23 24 (does work), the installation seems to be incomplete (version shows as 0.0.0
, and get an AttributeError
on triangle.triangulate()
. Upgrading pip first seems to fix the issue.