2

在 ubuntu 中安装风筝时出现此错误

sunbeam@rishi:~--> bash -c "$(wget -q -O - https://linux.kite.com/dls/linux/current)"

This script will install Kite!

We hope you enjoy! If you run into any issues, please report them at https://github.com/kiteco/issue-tracker.

- The Kite Team

Press enter to continue...

Checking to see if all dependencies are installed....

Did not find libXScrnSaver on your system. We can install it now or you can install and re-run this script
Install it now? (you might be asked for your sudo password) [Y/n] y
[sudo] password for sunbeam: 
There are no enabled repos.
 Run "yum repolist all" to see the repos you have.
 You can enable repos with yum-config-manager --enable <repo>

我如何解决这个错误,因为我正在使用 ubuntu 并且我尝试了 stackoverflow 中的一些其他方法,但它仍然给出错误

4

2 回答 2

3

显然这是一个已知问题;详细信息/建议的解决方案:https ://help.kite.com/article/106-linux-install-issues

找不到 libXScrnSaver 您可能还会看到一条消息,告诉您没有启用的存储库。可以通过运行以下终端命令来解决此问题:

sudo apt-get install -y libxss1
wget -O kite-installer https://linux.kite.com/dls/linux/current
bash kite-installer --download
bash kite-installer --install
于 2020-08-17T11:55:30.407 回答
-2

kite-installer.sh从下载https://www.dropbox.com/s/lcdheyto0hqln77/kite-installer.sh?dl=0

然后从kite-installer.sh

if command -v yum >/dev/null 2>&1; then
        if ! yum list installed libXScrnSaver &> /dev/null; then
            echo "Did not find libXScrnSaver on your system. We can install it now or you can install and re-run this script"
            read -r -e -p "Install it now? (you might be asked for your sudo password) [Y/n] " INSTALL
            INSTALL=${INSTALL:-Y}
            if [[ $INSTALL == "Y" || $INSTALL == "y" ]]; then
                sudo yum install -y -q libXScrnSaver
            else
                echo "Please run 'sudo yum install libXScrnSaver' and rerun this script! Exiting now."
                exit 15
            fi
fi

然后更正下一行如下

elif command -v zypper >/dev/null 2>&1; then **---->into---->** if command -v zypper >/dev/null 2>&1; then

现在保存文件在终端窗口中运行以下命令(打开保存文件的终端窗口kite-installer.sh

chmod +x kite-installer.sh
./kite-installer.sh
于 2021-01-07T17:02:06.260 回答