You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
~\Anaconda3\lib\site-packages\wmm2015_init_.py in
----> 1 from .base import wmm
~\Anaconda3\lib\site-packages\wmm2015\base.py in
13 dllfn = get_libpath(BDIR, "wmm15")
14 if not dllfn.is_file():
---> 15 build()
16 dllfn = get_libpath(BDIR, "wmm15")
17 if not dllfn.is_file():
~\Anaconda3\lib\site-packages\wmm2015\build.py in build()
21
22 with importlib.resources.path(package, "setup.cmake") as file:
---> 23 subprocess.check_call([exe, "-S", str(file), "-VV"])
24
25
~\Anaconda3\lib\subprocess.py in check_call(*popenargs, **kwargs)
362 if cmd is None:
363 cmd = popenargs[0]
--> 364 raise CalledProcessError(retcode, cmd)
365 return 0
366
CalledProcessError: Command '['C:\msys64\usr\bin\ctest.EXE', '-S', 'C:\Users\618938\Anaconda3\lib\site-packages\wmm2015\setup.cmake', '-VV']' returned non-zero exit status 255.
any thoughts?
The text was updated successfully, but these errors were encountered:
I finally had to give up and move to linux... could not get it to build, could never find all the right compilers in windows... fired right up in linux.
I'm working in Windows, and through a Jupyter Notebook (anaconda).
I have the following bit of code, note I've blocked off three "cells" here
====================================================
====================================================
====================================================
====================================================
in just trying to build the class, what I get is
CalledProcessError Traceback (most recent call last)
in
----> 1 import wmm2015
2
3
4 class WMM_Model(AbstractSpacePhysicsModel):
5 def generateOutput(self, currentDateTime: datetime, currentState : RayState) ->complex:
~\Anaconda3\lib\site-packages\wmm2015_init_.py in
----> 1 from .base import wmm
~\Anaconda3\lib\site-packages\wmm2015\base.py in
13 dllfn = get_libpath(BDIR, "wmm15")
14 if not dllfn.is_file():
---> 15 build()
16 dllfn = get_libpath(BDIR, "wmm15")
17 if not dllfn.is_file():
~\Anaconda3\lib\site-packages\wmm2015\build.py in build()
21
22 with importlib.resources.path(package, "setup.cmake") as file:
---> 23 subprocess.check_call([exe, "-S", str(file), "-VV"])
24
25
~\Anaconda3\lib\subprocess.py in check_call(*popenargs, **kwargs)
362 if cmd is None:
363 cmd = popenargs[0]
--> 364 raise CalledProcessError(retcode, cmd)
365 return 0
366
CalledProcessError: Command '['C:\msys64\usr\bin\ctest.EXE', '-S', 'C:\Users\618938\Anaconda3\lib\site-packages\wmm2015\setup.cmake', '-VV']' returned non-zero exit status 255.
any thoughts?
The text was updated successfully, but these errors were encountered: