团队,使用 Bazel 构建我的第一个应用程序并出现此错误。有什么提示吗?是否缺少文件路径或库路径?如果是,我该如何根据我的系统进行设置?bazel-out/k8-opt-exec-2B5CBBC6/bin/src/pip...
团队,使用 Bazel 构建我的第一个应用程序并出现此错误。有什么提示吗?
是否缺少文件路径或库路径?如果是,我该如何根据我的系统进行设置?
bazel-out/k8-opt-exec-2B5CBBC6/bin/src/pipelines/debugging/temporal/lib/debug_activities/mocks/mocks_mock_gomock_prog_bin_/mocks_mock_gomock_prog_bin: error while loading shared libraries: libfdb_c.so: cannot open shared object file: No such file or directory
2024/05/09 23:22:44 Loading input failed: exit status 127
分销商 ID:Ubuntu 描述:Ubuntu 20.04.2 LTSRelease:20.04 代号:focal
LD_LIBRARY_PATH = / usr/lib/x86_64-linux-gnu:/usr/lib/i386-linux-gnu:/usr/local/samu/lib:/usr/local/samu/lib64
我正在尝试在 Ubuntu 代理上的 PowerShell pwsh 任务中运行 SqlPackage /Action:Publish ... 命令。我使用 dotnet tool install --global microsoft.sqlpackage 安装了该工具。但是...
运行 SqlPackage /Action:Publish ...
上的 pwsh
PowerShell 任务中 Ubuntu 。我使用安装了该工具 dotnet tool install --global microsoft.sqlpackage
。但是,当我在成功安装后尝试调用 SqlPackage 时,遇到了以下错误:
dotnet tool install --global microsoft.sqlpackage
You can invoke the tool using the following command: sqlpackage
Tool 'microsoft.sqlpackage' (version '162.2.111') was successfully installed.
SqlPackage /Action:Publish [...]
SqlPackage: /home/vsts/work/_temp/af18b7cc-867a-478a-a211-4ea3963f2b75.ps1:19
Line |
19 | SqlPackage /Action:Publish /SourceFile:"$($dacpac.FullName)" /TargetConnec …
| ~~~~~~~~~~
| The term 'SqlPackage' is not recognized as a name of a cmdlet, function,
| script file, or executable program. Check the spelling of the name, or
| if a path was included, verify that the path is correct and try again.
为什么即使我安装了该工具,它还是会失败?将任务分成单独的安装和 SqlPackage 任务(有效地重新启动 PWSH 会话)并不能解决问题。无论是在云 ( ubuntu-latest
) 代理还是自托管 Linux 代理上,都会发生同样的问题。