我在这里试图在Ubuntu20.04LTS上安装RStudio IDE,但它要求安装一些包。我已经从ubuntu包下载了libc6_2.34,这个站点
https://packages.ubuntu.com/impish/amd64/libc6/download
sudo dpkg -i libc6_2.34-0ubuntu3_amd64.deb
现在我遇到了这样的错误
dpkg: regarding libc6_2.34-0ubuntu3_amd64.deb containing libc6:amd64:
libc6:amd64 breaks locales (<< 2.34)
locales (version 2.31-0ubuntu9.2) is present and installed.
dpkg: error processing archive libc6_2.34-0ubuntu3_amd64.deb (--install):
installing libc6:amd64 would break locales, and
deconfiguration is not permitted (--auto-deconfigure might help)
Errors were encountered while processing:
libc6_2.34-0ubuntu3_amd64.deb
发布于 2021-12-07 16:55:41
。
相反,使用与Ubuntu18.04LTS和20.04LTS兼容的RStudio普通deb软件包。
开放终端并执行:
sudo apt-get update
cd ~/Downloads
wget -c https://rstudio.org/download/latest/stable/desktop/bionic/rstudio-latest-amd64.deb
sudo apt-get install ./rstudio-latest-amd64.deb
https://askubuntu.com/questions/1379732
复制相似问题