-
Notifications
You must be signed in to change notification settings - Fork 17
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
direct install in windows,raise this error when test .what need to do? #4
Comments
Temporary fix. Comment out error lines
but, module 'os' has no attribute 'add_dll_directory'? This is a system function of Python for Windows, I guess your Python may not be fully installed. |
This will be fixed in new version |
I use python3.7.3 by anaconda, os really has no 'add_dll_directory'. |
No, everything is ok, |
I will fix it soon, now you just need to comment out error lines
|
......thanks your quick |
It is actuall for making sure python can find out the dll files, but in later versions, I did it in a better way, so it's ok to delete those two lines. |
Please install the newest version by pip. |
~\AppData\Roaming\Python\Python37\site-packages\pyanime4k\wrapper\acwrapper.py in
#Add current path to trusted DLL directory in Windows
if platform.system() == "Windows":
---> os.add_dll_directory(curr_path)
c_ac = ctypes.cdll.LoadLibrary(
AttributeError: module 'os' has no attribute 'add_dll_directory'
The text was updated successfully, but these errors were encountered: