English 中文(简体)
Error in rstudio : libuuid.so.1: cannot open shared object file: No such file or directory
原标题:

I installed RStudio version 0.98.507 and my R version is 2.14.1. My OS is ubuntu 12.04. When I try to start RStudio from the terminal I get the following error:

rstudio: error while loading shared libraries: libuuid.so.1: cannot open shared object file: No such file or directory

How do I solve this?

问题回答
apt-get install libuuid1

This command will not resolve the problem, if you are running 32 bit executable on 64 bit Ubuntu. Need to install 32 bit version of libuuid1 with `i386 suffix.

apt-get install libuuid1:i386

For NixOS, you can follow this:

Try

sudo apt-get install libuuid1

Maybe you have some dependencies and, in fact, not completely installed.

When I tried to install, I got the following error:

dpkg: dependency problems prevent configuration of rstudio:
 rstudio depends on libjpeg62; however:
  Package libjpeg62 is not installed.

So I simply installed the dependency via apt-get:

sudo apt-get install libjpeg62

And then installed the rstudio:

sudo dpkg -i rstudio-<your_version>-amd64.deb

In case someone else comes across this problem, installing libuuid1 also did not work for me. This was because I had installed the 32 bit version of R studio when my system is 64 bit. So one solution is to install the 32 bit versions of the libraries, such as libuuid1:i386 in debian. The more simple and obvious solution is to just uninstall the current version of rstudio and install the 64 bit version. Worked like a charm!

installing the following package solved the problem for me. I am using ubuntu 12.04

sudo apt-get install ia32-libs





相关问题
Signed executables under Linux

For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...

encoding of file shell script

How can I check the file encoding in a shell script? I need to know if a file is encoded in utf-8 or iso-8859-1. Thanks

How to write a Remote DataModule to run on a linux server?

i would like to know if there are any solution to do this. Does anyone? The big picture: I want to access data over the web, using my delphi thin clients. But i´would like to keep my server/service ...

How can I use exit codes to run shell scripts sequentially?

Since cruise control is full of bugs that have wasted my entire week, I have decided the existing shell scripts I have are simpler and thus better. Here is what I have so far svn update /var/www/...

Good, free, easy-to-use C graphics libraries? [closed]

I was wondering if there were any good free graphics libraries for C that are easy to use? It s for plotting 2d and 3d graphs and then saving to a file. It s on a Linux system and there s no gnuplot ...

热门标签