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
During installation with pip install, when 'building wheels', the install crashes (silently) on a 2GB RAM system. This is due to the c++ compiler running out of RAM.
It would be better to configure the compiler properly from the start inside RTB to avoid this issue. 2GB is more than enough for this project, and should work. Maybe a compiler flag is miss-used leading to a crash on low RAM systems. If I have time and this continues to be an issue, I might look into it and do a PR.
The text was updated successfully, but these errors were encountered:
Describe the bug
During installation with
pip install
, when 'building wheels', the install crashes (silently) on a 2GB RAM system. This is due to the c++ compiler running out of RAM.Version information
Tried both github 2a8111b
and pypi.
To Reproduce
pip install roboticstoolbox-python
Environment
Hacky Solution
I could install by passing some c++ compiler options to use less resources. The following works:
Better Solution to Seek for
It would be better to configure the compiler properly from the start inside RTB to avoid this issue. 2GB is more than enough for this project, and should work. Maybe a compiler flag is miss-used leading to a crash on low RAM systems. If I have time and this continues to be an issue, I might look into it and do a PR.
The text was updated successfully, but these errors were encountered: