Open khowarthCFS opened 4 months ago
Hello, @khowarthCFS
Raysect 0.7.1 does not include pyproject.toml
. The file was added later in version 0.8.1. So pip
uses the legacy setup.py install
method, but setup.py
itself requires numpy
and Cython
pre-installed. I successfully installed Raysect 0.7.1. to an empty virtual environment (also on Mac) by preinstalling both NumPy 1.26 and Cython 0.29:
pip install "numpy<2"
pip install "cython<3"
pip install raysect==0.7.1
Hello,
I have found that I am unable to install raysect on my M3 Mac. As a minimum reproducible example, here is my
pyproject.toml
file contents:Running
poetry install
gives:I am on poetry version 1.8.2.
Running the command given in the error message (
pip wheel --no-cache-dir --use-pep517 "raysect (==0.7.1)"
) also gives the same error.I do have numpy installed:
Even from within the poetry environment numpy is installed:
Appreciate any advice!