R studio not working with F30

Fresh install of F30. sudo dnf install R to install R first as usual, then download RPM off rstudio website. and rpm -ivh to install.

That was all it took under F29. But in F30 I get the following

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

1 Like
$ dnf provides libssl.so.10
compat-openssl10-1:1.0.2o-5.fc30.i686 : Compatibility version of the OpenSSL library
Repo        : fedora
Matched from:
Provide    : libssl.so.10

You could try to install compat-openssl10.

3 Likes

Thanks. It is working now but it said compat-openssl10 is already installed? Maybe it just got put into an update.

you have to install the x86_64 library sudo dnf install compat-openssl10-1:1.0.2o-5.fc30.x86_64. I did and Rstudio opens without problems.

1 Like

Why rpm -ivh and not dnf?

(Rpm doesnt to dependency management, so youve got to install the deps yourself. Dnf sits on top of rpm and does dep management so is generally a safer, easier tool to manage packages. )

I didn’t know you could dnf with rpm files … Thanks for that.

2 Likes