update R on an openSUSE server
Note:
This is an export from my old wordpress website, your comments or references might be lost during the migration. Sorry for the inconvenience.
- login as root
sudo -i # enter password
- add repository
VERSION=$(grep VERSION /etc/SuSE-release | sed -e 's/VERSION = //')
zypper addrepo -f http://download.opensuse.org/repositories/devel\:/languages\:/R\:/patched/openSUSE_$VERSION/ R-base
- install R
zypper install R-base R-base-devel
- update
zypper update R-base
check here for detailed explainations.