exostriker
exostriker copied to clipboard
"wotan not found" issue
I've installed the latest version of the tool per instructions; however, I received this "wotan not found" message. I've tried to copy the wotan folder under the local Exo-Striker directory, but this approach didn't work.
It actually seems to be a Numba issue undercover, because after I commented out part of the code in the "init.py" file as outlined in the attached image, the tool seems to be working.
I see... So wotan needs numpy=>1.21. What are your numba/numpy versions? Mine are:
$ import numpy as np
$ np.__version__
'1.22.3'
$ import numba as nb
$ nb.__version__
'0.52.0'
See also https://github.com/3fon3fonov/exostriker/issues/100
Mine are;
numpy.version '1.22.0'
numba.version '0.55.1'
if, e.g.,
$ sudo pip3 uninstall numba
$ sudo pip3 install numba==0.52
Everything will work....
I included in the setup.py
install_requires_py_ver=[
"numpy>=1.21",
"numba==0.52",...
Anyway, I will get back to this problem ASAP. Let's keep this issue open for other users.
I think this bug is not happening any more, with the new python3.10+ and newest numpy version. Closing.