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

其他人是否已经遇到/解决了这个问题?非常感谢!

4

1 回答 1

0

我能够找到解决我的问题的方法。

我的系统找不到powershell.exe,因为它没有添加到PATH环境变量中。

通过添加对

%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\

我可以让服务器启动并运行。

于 2019-10-30T13:35:33.183 回答