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
while building gpufit in windows11 in VS2019 ,it report :
4>Traceback (most recent call last):
4> File "F:\gpufit\gpufit_build\Release\pyCpufit\setup.py", line 10, in
4> import pycpufit.version as vs
4> File "F:\gpufit\gpufit_build\Release\pyCpufit\pycpufit_init_.py", line 1, in
4> from cpufit import *
4>ModuleNotFoundError: No module named 'cpufit'
4>D:\VS2019\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(241,5): error MSB8066: “F:\gpufit\gpufit_...
this is the only error report. other project building completed well.
The text was updated successfully, but these errors were encountered:
Commenting out the 'from cpufit import *' in Cpufit/python/pycpufit/init.py helped me build it without error. When running example programs replace the line 'import cpufit as cf' with 'import pycpufit.cpufit as cf'. YMMV.
while building gpufit in windows11 in VS2019 ,it report :
4>Traceback (most recent call last):
4> File "F:\gpufit\gpufit_build\Release\pyCpufit\setup.py", line 10, in
4> import pycpufit.version as vs
4> File "F:\gpufit\gpufit_build\Release\pyCpufit\pycpufit_init_.py", line 1, in
4> from cpufit import *
4>ModuleNotFoundError: No module named 'cpufit'
4>D:\VS2019\MSBuild\Microsoft\VC\v160\Microsoft.CppCommon.targets(241,5): error MSB8066: “F:\gpufit\gpufit_...
this is the only error report. other project building completed well.
The text was updated successfully, but these errors were encountered: