Replies: 2 comments 4 replies
-
Thanks @gyanz! I am curious if you tried the fix that is in the master branch for the |
Beta Was this translation helpful? Give feedback.
1 reply
-
So this is similar but not identical to #667. Do you understand the additional code here that makes the difference? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was able to install clawpack and run few python examples on a Windows 10 machine with the following steps:
f77 = _shell_utils.NativeParser.split(f77), f90 = _shell_utils.NativeParser.split(f90), fix = _shell_utils.NativeParser.split(fix)
and replaced them withf77 = [f77], f90 = [f90], fix = [fix]
respectively. I am using Numpy 1.21.1.Initially, I had compiled clawpack source using Anaconda's Python 3.7.10 64-bit, but the extension modules gave "DLL load failed: The specified procedure could not be found" error while running the python examples. So I switched to python (same version) that was installed along with MS Visual Studio 2019 Community Edition. I used Intel Fortran Intel 64 Compiler (Version 2021.3.0, Build 20210609_000000) and MSVC x64 (Version 19.29.30133) for compilation.
I tested the installation using nose following this instruction. The results show few errors - see the attachment below.
nosetests_result.txt
Beta Was this translation helpful? Give feedback.
All reactions