-
Notifications
You must be signed in to change notification settings - Fork 115
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
环境问题(是否要求linux系统以及python版本) #62
Comments
win10可以跑的,我就是用的win10,自测numpy==1.16.1是可以运行的,你可以把numpy升到这个版本 |
感谢您的帮助 |
My compile configuration is that python == 3.7 && numpy == 1.16.1 && protobuf == 3.20.0 And there is a discussion in stackoverflow about the problem you have proposed. BTW,it is important to know that the path separator returned by So how to run if os.name == 'posix':
# Linux/Unix分割符 是 /
image_name = image_path.split('/')[-1]
elif os.name == 'nt':
# Windows 分割符 是 \
image_name = image_path.split('\\')[-1] |
@Kiumb1223 yes,that is very importent on windows! i lost lots of time until i see the issue.thanks! |
作者您好,请问作者这个工程是否一定要求Linux系统,我用Windows10系统按照requirments要求安装了环境,但是运行时报错显示numpy版本过低(目前是numpy==1.15.1,python3.7),感谢您的帮助。
ModuleNotFoundError: No module named 'numpy.core._multiarray_umath'
ImportError: numpy.core.multiarray failed to import
ImportError: numpy.core._multiarray_umath failed to import
ImportError: numpy.core.umath failed to import
The text was updated successfully, but these errors were encountered: