You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build requirements seems to be downloaded by the install process, but not actually found when building;
git clone https://github.com/pybind/cmake_example.git cd cmake_example pip3 install .
...
Traceback (most recent call last):
File "/private/var/folders/.../overlay/bin/cmake", line 5, in <module>
from cmake import cmake
ModuleNotFoundError: No module named 'cmake'
If you manually install using pip3 install cmake it works after that.
The text was updated successfully, but these errors were encountered:
What system are you on? It’s actually getting CMake (/private/var/folders/.../overlay/bin/cmake) but not finding the package it came from, which is weird.
homebrew python 3.10 and 3.11 is currently broken when building not in a virtualenv, will be fixed next Pip update.
The build requirements seems to be downloaded by the install process, but not actually found when building;
git clone https://github.com/pybind/cmake_example.git
cd cmake_example
pip3 install .
...
If you manually install using
pip3 install cmake
it works after that.The text was updated successfully, but these errors were encountered: