Open ebuster opened 4 months ago
i just found this repo and was very excited (since i love his grids) to see this generator. i ran into the same issue and im going to assume you are running this on an apple silicon ( M1 or above) mac vs intel which may be why you are seeing this. if that is the case and you are comfortable using docker i have created a docker file that you can build that will let you run it. i did go down some rabbit holes about potentially getting the cadquery-ocp installed on an arm based system using conda but docker makes it easy so that is the route i went
FROM --platform=linux/amd64 python:3.12-slim
RUN apt-get update && \
apt-get -y --no-install-recommends install \
pipx \
libgl1 \
libglib2.0-0
RUN pipx install gfthings && pipx ensurepath
WORKDIR /root
@smos08, you are right - I have M1. Docker is not my passion, but as minimum now I know how to deal with that. Thank you very much!
An alternative is that you can pip install cadquery-ocp manually by just pasting the link from this github release https://github.com/CadQuery/ocp-build-system/releases/tag/7.7.2.0
This way you don't have to use conda or docker if you don't want to on an m1/2/3/+ mac machine.
Hi,
I installed pipx using Homebrew:
Then trying to install gfthings:
Log file content:
What I am doing wrong? I tried to google solution but no success, sorry.