Issue2756

classification
Title: Error loading Python DLL (error code 14001)
Type: Severity: urgent
Components: Core Versions: Jython 2.7
Milestone: Jython 2.7.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder: jython-Installer 2.7.1 error code 14001
View: 2620
Assigned To: Nosy List: jeff.allen, venkat_jython
Priority: normal Keywords:

Created on 2019-04-10.06:39:37 by venkat_jython, last changed 2019-04-10.08:33:42 by jeff.allen.

Messages
msg12428 (view) Author: Venkatesh Sundaramoorthy (venkat_jython) Date: 2019-04-10.06:39:37
Hi,

After I downloaded and installed jython2.7.1 from the web site on my windows7 PC. As mentioned in Read me I ran jython_regrtest.bat, I am getting the following error. can you look at this issue and provide solution for this, that would be great.

C:\jython2.7.1\bin>jython_regrtest.bat

C:\jython2.7.1\bin>C:\jython2.7.1\bin\jython.exe -m test.regrtest -e -m regrtest
_memo.txt
Error loading Python DLL: C:\jython2.7.1\bin\python27.dll (error code 14001)


Thanks,
Venkatesh S
msg12430 (view) Author: Jeff Allen (jeff.allen) Date: 2019-04-10.08:33:42
This is a duplicate of issue #2620, fixed for 2.7.2 when it emerges.

It happens where the DLL from the Python 2 on your system differs from the one with which the Jython launcher was built. You can launch directly with a java command, something like:

java -Xmx512m -Xss2560k -classpath "dist\jython-dev.jar;dist\javalib\*;." "-Dpython.launcher.tty=true" org.python.util.jython myprog.py

"myprog.py" here is whatever would go after the jython command. The quotes are necessary on MS PowerShell; it may be different for CMD.
History
Date User Action Args
2019-04-10 08:33:42jeff.allensetstatus: open -> closed
nosy: + jeff.allen
messages: + msg12430
priority: normal
superseder: jython-Installer 2.7.1 error code 14001
milestone: Jython 2.7.1 -> Jython 2.7.2
resolution: duplicate
2019-04-10 06:39:37venkat_jythoncreate