我在Anaconda环境中将AnyPyTools作为包运行。当我试图运行AnyPyTools的第一个命令“入门”jupyter笔记本时,我会收到一个错误,上面写着“无法在注册表中定位AnyBody”。对如何处理这件事有什么想法吗?
我试着卸载&重新安装AnyPyTools,其间关闭,但仍然会出现相同的错误。另外,我找不到要安装的单独的AnyBody python包。
版本信息:
3.8.12.final.0
代码
(来自http://localhost:8888/notebooks/01_Getting_started_with_anypytools.ipynb)
from anypytools import AnyPyProcess
app = AnyPyProcess()错误消息:
OSError: Could not locate AnyBody in registry追踪:
---------------------------------------------------------------------------
FileNotFoundError Traceback (most recent call last)
~\Anaconda3\lib\site-packages\anypytools\tools.py in get_anybodycon_path()
461 try:
--> 462 abpath = winreg.QueryValue(
463 winreg.HKEY_CLASSES_ROOT, "AnyBody.AnyScript\\shell\\open\\command"
FileNotFoundError: [WinError 2] The system cannot find the file specified
During handling of the above exception, another exception occurred:
OSError Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_11000/586603320.py in <module>
1 from anypytools import AnyPyProcess
----> 2 app = AnyPyProcess()
~\Anaconda3\lib\site-packages\anypytools\abcutils.py in __init__(self, num_processes, anybodycon_path, timeout, silent, ignore_errors, warnings_to_include, fatal_warnings, return_task_info, keep_logfiles, logfile_prefix, python_env, debug_mode, use_gui, priority, **kwargs)
537
538 if anybodycon_path is None:
--> 539 anybodycon_path = get_anybodycon_path()
540 anybodycon_path = Path(anybodycon_path)
541 if use_gui:
~\Anaconda3\lib\site-packages\anypytools\tools.py in get_anybodycon_path()
464 )
465 except WindowsError:
--> 466 raise WindowsError("Could not locate AnyBody in registry")
467 abpath = abpath.rsplit(" ", 1)[0].strip('"')
468 abpath = os.path.join(os.path.dirname(abpath), "AnyBodyCon.exe")
OSError: Could not locate AnyBody in registry发布于 2021-11-19 21:51:23
答案是它不起作用,因为它需要安装任何需要付费许可的软件。
https://stackoverflow.com/questions/70040053
复制相似问题