Closed kecaj closed 3 years ago
Hi @kecaj. If you just want to run InVesalius you can run it using flatpak https://flathub.org/apps/details/br.gov.cti.invesalius
If you want to run from source code, there is requirements.txt
inside InVesalius. Just run:
pip install -r requirements.txt
To install all the needed libs. Unfortunately, there is no VTK9.0.1 wheel to Python3.9. What you can do is change the version of VTK to 9.0.20210612.dev0
in the requirements.txt
. There is not a WXPython wheel to Linux too, but pip
will compile it to you, you just need to install some packages before run pip install -r requirements.txt
:
dnf -y install gcc-c++ python3-devel freeglut-devel gstreamer1-devel gstreamer1-plugins-base-devel gtk3-devel libjpeg-turbo-devel libnotify-devel libpng-devel libSM-devel libtiff-devel libXtst-devel SDL-devel webkit2gtk3-devel which
Thank you for your thoughtful feedback.
The mistake I made was installing plaidml-keras in a virtual environment instead of using pip install --user.
When I followed the instructions precisely, invesalius ran as expected.
Trying to follow the installation instructions on Fedora 34.
However, I do have
libgdcmMEXD.so.3.0.8
instead oflibgdcmMEXD.so.2.8
:What could I do to get Invesalius to run?