exostriker icon indicating copy to clipboard operation
exostriker copied to clipboard

"wotan not found" issue

Open schaubia opened this issue 2 years ago • 3 comments

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. Screenshot 2022-05-01 10^%25^%16

schaubia avatar May 01 '22 17:05 schaubia

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

3fon3fonov avatar May 02 '22 00:05 3fon3fonov

Mine are;

numpy.version '1.22.0'

numba.version '0.55.1'

schaubia avatar May 02 '22 19:05 schaubia

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.

3fon3fonov avatar May 03 '22 00:05 3fon3fonov

I think this bug is not happening any more, with the new python3.10+ and newest numpy version. Closing.

3fon3fonov avatar Sep 28 '23 07:09 3fon3fonov