- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
ctypes.WinDLL("C:\Program Files\AHSDK\bin\ahscript.dll")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\lib\ctypes\__init__.py", line 353, in __init__
self._handle = _dlopen(self._name, mode)
WindowsError: [Error 126] The specified module could not be found
我该如何解决?我在C:\Python26\lib\ctypes\__init__.py
中找到了_dlopen,但我真的不知道如何解决。
最佳答案
反斜杠是字符串中的转义字符,如下例所示:
>>> print "C:\Program Files\AHSDK\bin\ahscript.dll"
C:\Program Files\AHSDinhscript.dll
您可以通过在字符串前放置一个 r 来解决这个问题,这样可以防止反斜杠用作转义字符:
ctypes.WinDLL(r"C:\Program Files\AHSDK\bin\ahscript.dll")
或者,您可以转义反斜杠:
ctypes.WinDLL("C:\\Program Files\\AHSDK\\bin\\ahscript.dll")
关于Python ctypes.WinDLL 错误,找不到 _dlopen(self._name, mode),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3101981/
我正在 Keras 中制作 CNN。但我在制作 Keras 模型时遇到问题。这是我的代码: x = Input(shape=(256,256,1)) for i in range(16): u
from tensorflow.keras.layers import Input, Dense from tensorflow.keras.models import Model input_img
我在无数 C/C++ 头文件和源文件中看到过这种情况。 除了个人喜好之外,这些不同符号中的每一个的含义是什么? _NAME __NAME _NAME_ __NAME__ NAME_t 老实说,我唯一理
如标题所示 - 我有一个包含多行的文件,其中每行包含字符串 BID_1:**** . ****是不同的数字。例如: string1 string2 BID_1:1111 string3 string1
This error is thrown up when "hr.employee" or any other model with Many2many field is inherited to m
我不明白出了什么问题。我需要有两组输入,因此我将它们分开并给每个输入一个名称(服务目的),然后将它们连接起来以将它们链接到下一层。 layer_input1 = tf.keras.Input(sha
ctypes.WinDLL("C:\Program Files\AHSDK\bin\ahscript.dll") Traceback (most recent call last): File "
我是一名优秀的程序员,十分优秀!