gpt4 book ai didi

android - 在 64 位版本的 Lubuntu 上安装 Android Studio 无法安装一些 32 位库

转载 作者:行者123 更新时间:2023-12-03 19:43:56 24 4
gpt4 key购买 nike

Install Android Studio说:

If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:

sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386
lib32z1 libbz2-1.0:i386

看截图:
enter image description here apt-get install失败:
$ sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libc6:i386
E: Unable to locate package libncurses5:i386
E: Unable to locate package libstdc++6:i386
E: Couldn't find any package by regex 'libstdc++6'
E: Unable to locate package libbz2-1.0:i386
E: Couldn't find any package by glob 'libbz2-1.0'
E: Couldn't find any package by regex 'libbz2-1.0'
版本信息:
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 19.10
Release: 19.10
Codename: eoan

$ uname -a
Linux frozen 5.3.0-18-generic #19-Ubuntu SMP Tue Oct 8 20:14:06 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

最佳答案

我也有同样的问题,但这就是我解决我的问题的方法。在 64 位 Linux 上安装 32 位软件包需要您通过告诉操作系统允许安装 32 位软件包/依赖项来启用或向操作系统发出指令。在大多数情况下,当您安装 64 位 Linux 时,它只会配置 64 位架构。因此,您需要添加 32 位配置。

首先验证系统中配置的架构;

sudo dpkg --print-architecture         //amd64

第二次寻找任何其他外国架构
sudo dpkg --print-foreign-architectures      //response should be nothing

现在继续添加 32 位架构
sudo dpkg --add-architecture i386

验证添加了 32 位
sudo dpkg --print-foreign-architectures      //i386

然后更新你的包
sudo apt-get update

现在您可以安装 32 位软件包
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386

关于android - 在 64 位版本的 Lubuntu 上安装 Android Studio 无法安装一些 32 位库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58681718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com