-1

我下载ZeroBraneStudioEduPack-1.40-linux.sh并运行了它,但我在任何地方都找不到 IDE。

这是我跑时的输出./ZeroBraneStudioEduPack-1.40-linux.sh

# ./ZeroBraneStudioEduPack-1.40-linux.sh
Verifying archive integrity... All good.
Uncompressing ZeroBraneStudio with EduPack 1.40.......
Installing ZeroBrane Studio 1.40...
./install.sh: line 18: sudo: command not found
./install.sh: line 19: sudo: command not found
./install.sh: line 21: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 25: sudo: command not found
./install.sh: line 30: sudo: command not found
./install.sh: line 39: sudo: command not found
./install.sh: line 40: sudo: command not found
./install.sh: line 42: sudo: command not found
./install.sh: line 44: sudo: command not found
./install.sh: line 45: sudo: command not found
Done.

To uninstall ZeroBrane Studio at a later time, run:
    zbstudio-uninstall

这是我的linux信息:

Linux fatdog64-e6c 3.18.7 #1 SMP Mon Nov 16 01:58:11 WIB 2015 x86_64 GNU/Linux
4

3 回答 3

0

这是一个外壳脚本。它需要在命令行中运行。在 Ubuntu 上打开一个终端并导航到包含该文件的目录并键入:

/bin/bash ZeroBraneStudioEduPack-1.40-linux.sh
于 2019-02-07T07:35:24.083 回答
0

不确定其他答案是否切中要害......下载脚本后,您需要执行以下操作:

sudo ./ZeroBraneStudioEduPack-1.90-linux.sh

首先,(令人惊讶的是,这没有很好的记录):

zbstudio

于 2020-12-31T18:44:44.460 回答
0

您可以在重命名为并打开后打开它.shvim用直到二进制数据终止行。d.sh.tar

在里面你会看到一个文件夹app——这是你的工作室。

文件zbstudio.sh应如下所示:

#!/bin/bash

if [[ "$(uname -m)" == "x86_64" ]]; then ARCH="x64"; else ARCH="x86"; fi
(bin/linux/$ARCH/lua src/main.lua zbstudio "$@") &

即我们刚刚从中删除cd "/opt/zbstudio";

于 2017-01-26T07:11:20.900 回答