2016-10-14 4 views
0

ZeroBraneStudioEduPack-1.40-linux.shをダウンロードして実行しましたが、どこでもIDEが見つかりません。ここでLinuxにZeroBrane Studioをインストール

私はここで./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 
+0

あなたのインストールで 'sudo'が壊れている/見つからないようです。おそらく 'apt-get install --reinstall sudo'を実行しようとしていますか? –

答えて

0

名前を変更した後、バイナリデータまでdでラインを殺す、vimでこの.shを開くことができます.sh~.tarとオープンです。

内部にはappというフォルダがあります。これはあなたのスタジオです。我々はそれからcd "/opt/zbstudio";を削除

#!/bin/bash 

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

すなわち:

ファイルzbstudio.shべきでは次のようになります。

+0

インストールアーカイブに--keepオプションを渡すことができるので、より簡単なオプションがあります。これにより、すべてのファイルが解凍され、保存されます。このケースをカバーするインストール手順を更新しました:https://studio.zerobrane.com/doc-installation#linux –

関連する問題