标签: python ssh entry-point
我创建了一个Python包,该包在console_scripts下有1个入口点。当安装了软件包并且我在机器自己的bash中调用命令时,它运行良好。
console_scripts
但是,当从外部通过ssh调用命令时,它将失败。
ssh
如果我运行此命令:
ssh host "command1"
...我收到此错误:
bash:command1:找不到命令
但是从主机上运行时,它可以正常工作。有任何线索吗?