-
Notifications
You must be signed in to change notification settings - Fork 317
numba does not work in 3.4.4.2 #315
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
it's due to it's a bit wired. You may do |
You're right the python.bat script should not call ptpython. It's a design error of WinPython. The two solutions for now are to specify 'python.exe' or to remove 'ptpython' package. |
you may also copy the current 'python.bat' as 'winpython.bat', and keep 'python.bat' calling only python:
|
@stonebig Tried what you suggested (first the changed bat file, then uninstalling ptpython). Does not change the fact that a script containing |
Yes, you made me discover an issue, but your error message is something else, if still present: it works on my pc. |
Ok, at least the When trying to let something compile (for example numba pycc) it throws:
Which makes me wonder if this is supposed to work with mingw32 included in winpython (there is no VS 2015 on my machine). From my side this issue can be closed. |
good remark: starting WinPython 2016-02, you need vc_redist.x86.exe, as numba needs it. We couldn't stay on old numba forever, and the other issue I found made me forgot about it. I did put a (*) with a footnote on the winpython.github.io page, but it may be not clear enough. |
for vcvarsall problem on "numba pycc":
mingwpy is critical for Scientific Python eco-system development on Windows. |
Tried the following directly after downloading WinPython-32bit-3.4.4.2Qt5 on a machine running Win7 Enterprise SP1 64 bit/8GB:
cd ..
python -c "import numba"
This throws the following exception:
As I understand it,
self._name
isllvmlite.dll
. Changing intoLib\site-packages\llvmlite\binding
wherellvmlite.dll
lives gives the same error.As the same also happens on a Windows 8.1 machine, I suppose I am not the only one with this issue.
Otherwise (e. g. jupyter) or Qt5 apps work as expected.
The text was updated successfully, but these errors were encountered: