如何在wimdows10上用python编写pypx库中pxecho模块中可执行文件的路径

2024-09-25 02:34:55 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在为pacs开发pypx库。有谁能建议一下我们这里要提到的道路是什么。这条路指的是什么?你知道吗

pacs_settings = {
  'executable': '/usr/local/bin/echoscu',
  'aec': 'ORTHANC',
  'aet': 'CHIPS',
  'server_ip': '127.0.0.1',
  'server_port': '4242',
}

这里引用的可执行文件的路径是什么,它到底指的是什么??你知道吗

请在这一部分进行指导。。你知道吗


Tags: binsettingsserverusrlocal建议pacsaet
1条回答
网友
1楼 · 发布于 2024-09-25 02:34:55

它指的是echoscu

documentation

The echoscu application implements a Service Class User (SCU) for the Verification SOP Class. It sends a DICOM C-ECHO message to a Service Class Provider (SCP) and waits for a response. The application can be used to verify basic DICOM connectivity.

假设您运行的是Linux,那么应该安装这个。如果它不在/usr/local/bin/中,您可以键入which echoscu来获取它的路径(我不知道不同发行版是否将内容放在了其他地方)

相关问题 更多 >