中级玩家
 
- 贡献度
- 0
- 金元
- 1118
- 积分
- 112
- 精华
- 0
- 注册时间
- 2013-12-28
|
Traceback (most recent call last):
File "C:\Users\1\Desktop\act2\injector.py", line 1568, in get_python_base
return self.get_ldr_data(PYTHON_DLL).DllBase
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\1\Desktop\act2\injector.py", line 1474, in get_ldr_data
raise KeyError(f'dll {dll_name!r} not found')
KeyError: "dll 'python311.dll' not found"
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Users\1\Desktop\act2\act_ws.py", line 757, in <module>
main()
File "C:\Users\1\Desktop\act2\act_ws.py", line 749, in main
process.injector.wait_inject()
File "C:\Users\1\Desktop\act2\injector.py", line 1259, in wait_inject
self.logger.debug(f"python base {self.process.get_python_base(True):#x}")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\1\Desktop\act2\injector.py", line 1571, in get_python_base
base = self.load_library(Process.current().get_ldr_data(PYTHON_DLL).FullDllName.value)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\1\Desktop\act2\injector.py", line 1498, in load_library
raise ValueError(f'LoadLibrary failed: {filepath!r}')
ValueError: LoadLibrary failed: b'C:\\Program Files\\WindowsApps\\PythonSoftwareFoundation.Python.3.11_3.11.2288.0_x64__qbz5n2kfra8p0\\python311.dll'
报错没有找到python311.dll装的32位的python 换了64位也报错 不知道什么情况 |
|