-
Notifications
You must be signed in to change notification settings - Fork 373
Description
What were you doing?
Installing the Bed Level Visualizer plugin, and I believe also the Prusa Mesh Map plugin numpy has to download and compile, which takes forever on some older devices as well as smaller memory devices.
What did you expect to happen?
This is expected behavior, but would like to improve the user experience.
What happened instead?
The plugin took forever to install.
Did the same happen when running OctoPrint in safe mode?
N/a
Version of OctoPi
0.17
Printer model & used firmware incl. version
N/A
Screenshot(s)/video(s) showing the problem:
N/A
Request is to include the numpy compile ahead of time so it's already available on the system for any plugin to utilize without having to compile. I believe octopi 0.18 already has the necessary pre-requisites installed for numpy compiling, but to be sure the programs outside of the virtualenv that are required can be installed with the command below for the python 3 requirements.
sudo apt install libgfortran5 libatlas3-base libatlas-base-dev
and then the command to install numpy is within the virtualenv of octoprint source ~/oprint/bin/activate
pip install numpy
I have read the FAQ.