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 current main commit 85404a5 does not work with the latest versions of lapy, vtk and numpy since the breaking changes to the vtk api after vtk==9.0.2.
This combination works with demo_eigenmode_calculation.sh
Unfortunately if I attempt to generate a working requirements.txt file using pip3 freeze > requirements.txt from my working environment, the resulting requirements does not resolve correctly when installing with pip3 install -r requirements.txt.
However a workaround is to install just these dependencies in this order:
The current main commit 85404a5 does not work with the latest versions of lapy, vtk and numpy since the breaking changes to the vtk api after vtk==9.0.2.
This combination works with
demo_eigenmode_calculation.sh
Unfortunately if I attempt to generate a working requirements.txt file using
pip3 freeze > requirements.txt
from my working environment, the resulting requirements does not resolve correctly when installing withpip3 install -r requirements.txt
.However a workaround is to install just these dependencies in this order:
pip3 install vtk==9.0.2 lapy==0.6.0 numpy==1.23.5 brainspace==0.1.10
due to less restrictive requirements for vtk in lapy etc.
The text was updated successfully, but these errors were encountered: