ait-aecid / logdata-anomaly-miner

This tool parses log data and allows to define analysis pipelines for anomaly detection. It was designed to run the analysis with limited resources and lowest possible permissions to make it suitable for production server use.
GNU General Public License v3.0
63 stars 22 forks source link

Numpy linking issue #1311

Open landauermax opened 2 months ago

landauermax commented 2 months ago

When installing the aminer with aminer_install script, numpy and other packages are linked as follows:

numpy -> /usr/lib/python3/dist-packages/pythran/pythonic/include/numpy

This is not correct as they should be linked to /usr/lib/python3/dist-packages/numpy

landauermax commented 2 months ago

Tested on:

Distributor ID: Ubuntu Description: Ubuntu 22.10 Release: 22.10 Codename: kinetic

ernstleierzopf commented 2 months ago

I fixed this by removing recursive search in the linking part in aminer-ansible and created pull requests for the development and the main branches. I also tested it and think it works. @landauermax you can test this by simply exchanging the aminer-ansible repository to git clone -b fix_linking https://github.com/ernstleierzopf/aminer-ansible roles/aminer. @whotwagner please check the changes/results with @landauermax and merge these changes to the aminer-ansible project.