如何修复“windows_configure_web_node.py FileNotFoundError”中的“失败”
How to fix 'Failure in `windows_configure_web_node.py FileNotFoundError`
我正在尝试配置 Microsoft 机器学习服务器 (9.4) 以在我的本地计算机上运行。
我无法按照以下说明进行操作:
https://docs.microsoft.com/en-us/machine-learning-server/operationalize/configure-machine-learning-server-one-box
在
# With elevated privileges, run the following commands.
# Set up both nodes on one machine
az mlserver admin node setup --onebox --admin-password <Password> --confirm-password <Password>
我尝试重新安装机器学习服务器(不包括 R),结果相同。
这是在尝试配置机器学习服务器时显示的错误消息:
C:\WINDOWS\system32>az mlserver admin bootstrap
Admin password:
Confirm admin password:
fail The web node failed to be configured.
Failure in `windows_configure_web_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
fail The compute node failed to be configured.
Failure in `windows_configure_compute_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
The web node failed to be configured.
Failure in `windows_configure_web_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
The compute node failed to be configured.
Failure in `windows_configure_compute_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
其他人已经 encountered/solved 遇到过这个问题吗?
非常感谢!
我找到了解决问题的方法。
我的系统找不到 powershell.exe
,因为它没有添加到 PATH
环境变量中。
通过添加对
的引用
%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\
我可以启动服务器 运行。
我正在尝试配置 Microsoft 机器学习服务器 (9.4) 以在我的本地计算机上运行。
我无法按照以下说明进行操作: https://docs.microsoft.com/en-us/machine-learning-server/operationalize/configure-machine-learning-server-one-box
在
# With elevated privileges, run the following commands.
# Set up both nodes on one machine
az mlserver admin node setup --onebox --admin-password <Password> --confirm-password <Password>
我尝试重新安装机器学习服务器(不包括 R),结果相同。
这是在尝试配置机器学习服务器时显示的错误消息:
C:\WINDOWS\system32>az mlserver admin bootstrap
Admin password:
Confirm admin password:
fail The web node failed to be configured.
Failure in `windows_configure_web_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
fail The compute node failed to be configured.
Failure in `windows_configure_compute_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
The web node failed to be configured.
Failure in `windows_configure_web_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
The compute node failed to be configured.
Failure in `windows_configure_compute_node.py` FileNotFoundError
[WinError 2] The system cannot find the file specified
其他人已经 encountered/solved 遇到过这个问题吗? 非常感谢!
我找到了解决问题的方法。
我的系统找不到 powershell.exe
,因为它没有添加到 PATH
环境变量中。
通过添加对
的引用%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\
我可以启动服务器 运行。