Issue2930

classification
Title: Cannot run Numpy example with JyNI
Type: Severity: normal
Components: Library Versions: Jython 2.7.2
Milestone:
process
Status: closed Resolution: invalid
Dependencies: Superseder:
Assigned To: Nosy List: Daniel, jeff.allen
Priority: Keywords:

Created on 2022-04-21.14:23:56 by Daniel, last changed 2022-05-07.17:35:00 by jeff.allen.

Messages
msg13208 (view) Author: Daniel Alievsky (Daniel) Date: 2022-04-21.14:23:56
Hello! I tried to run Numpy with Jython via JyNI, as described in a paper https://arxiv.org/pdf/1607.00825v1.pdf

1) I copied Numpy package from separately installed Anaconda-2 into C:\jython2.7.2\Lib\site-packages\, due to a problem with installing Numpy by Jython pip (see https://bugs.jython.org/issue2928 )

2) I unpacked DemoExtension.pyd and python27.dll from JyNI archive into C:\JyNI folder.

3) I tried to run a very simple code:
import sys
sys.path.append('c:/JyNI')
import numpy as np
(as written in PDF-file).

Results:
Traceback (most recent call last):
  File "C:/siams/computer-vision/stare-python/jython-experiments/net/algart/jython/tests/SimpleJythonNumpyTest.py", line 3, in <module>
    import numpy as np
  File "C:\jython2.7.2\Lib\site-packages\numpy\__init__.py", line 142, in <module>
    from . import core
  File "C:\jython2.7.2\Lib\site-packages\numpy\core\__init__.py", line 71, in <module>
    raise ImportError(msg)
ImportError: 

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the multiarray numpy extension module failed.  Most
likely you are trying to import a failed build of numpy.
Here is how to proceed:
- If you're working with a numpy git repository, try `git clean -xdf`
  (removes all files not under version control) and rebuild numpy.
- If you are simply trying to use the numpy version that you have installed:
  your installation is broken - please reinstall numpy.
- If you have already reinstalled and that did not fix the problem, then:
  1. Check that you are using the Python you expect (you're using C:\jython2.7.2\bin\jython.exe),
     and that you have no directories in your PATH or PYTHONPATH that can
     interfere with the Python and numpy versions you're trying to use.
  2. If (1) looks fine, you can open a new issue at
     https://github.com/numpy/numpy/issues.  Please include details on:
     - how you installed Python
     - how you installed numpy
     - your operating system
     - whether or not you have multiple versions of Python installed
     - if you built from source, your compiler versions and ideally a build log

     Note: this error has many possible causes, so please don't comment on
     an existing issue about this - open a new one instead.

Original error was: No module named _multiarray_umath

What does go wrong here? Is it a problem of using module "numpy" from Anaconda (instead of normal installing with pip), or is it a problem if using JyNI?
msg13210 (view) Author: Daniel Alievsky (Daniel) Date: 2022-04-21.15:28:15
It seems that its is a wrong issue. I created another issue on JyNI site: https://github.com/Stewori/JyNI/issues/39
So, you may close this issue. But if you can advise something, I would be grateful.
msg13214 (view) Author: Jeff Allen (jeff.allen) Date: 2022-05-07.17:35:00
You've gone to the right (other) place.

Also, https://github.com/jython/jython/issues/170, should you have actual Jython issues.
History
Date User Action Args
2022-05-07 17:35:00jeff.allensetstatus: open -> closed
resolution: invalid
messages: + msg13214
nosy: + jeff.allen
2022-04-21 15:28:15Danielsetmessages: + msg13210
2022-04-21 14:23:56Danielcreate