I have PyTorch version 1.9.0 and I'm trying to install signatory version 1.2.6 on my Mac OS Ventura. I'm running the following command (reference: signatory installation) on the terminal creating a virtual environment:
pip install signatory==1.2.6.1.9.0 --no-cache-dir --force-reinstall
And that is giving me the following result:
Downloading signatory-1.2.6.1.9.0.tar.gz (62 kB)━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 62.8/62.8 kB 1.7 MB/s eta 0:00:00 Preparing metadata (setup.py) ... doneBuilding wheels for collected packages: signatory Building wheel for signatory (setup.py) ... error error: subprocess-exited-with-error× python setup.py bdist_wheel did not run successfully.│ exit code: 1╰─> [111 lines of output] running bdist_wheel running build running build_py creating build creating build/lib.macosx-10.9-x86_64-cpython-38 creating build/lib.macosx-10.9-x86_64-cpython-38/signatory copying src/signatory/signature_inversion_module.py -> buil ... ... ... raise RuntimeError(message) from e RuntimeError: Error compiling objects for extension [end of output] note: This error originates from a subprocess, and is likely not a problem with pip. ERROR: Failed building wheel for signatory Running setup.py clean for signatoryFailed to build signatoryERROR: Could not build wheels for signatory, which is required to install pyproject.toml-based projects
I've searched on Google but found no reference to this ERROR: Could not build wheels for signatory, which is required to install pyproject.toml-based projects
.Any suggestions would be highly appreciated! Thanks.