Package Details: rstudio-desktop-bin 2023.12.1.402-1

Git Clone URL: https://aur.archlinux.org/rstudio-desktop-bin.git (read-only, click to copy)
Package Base: rstudio-desktop-bin
Description: An integrated development environment (IDE) for R (binary from RStudio official repository)
Upstream URL: http://www.rstudio.org/
Licenses: GPL
Conflicts: rstudio-desktop, rstudio-desktop-git, rstudio-desktop-preview-bin
Provides: rstudio-desktop
Submitter: Meow
Maintainer: Meow
Last Packager: Meow
Votes: 343
Popularity: 1.31
First Submitted: 2011-06-16 16:26 (UTC)
Last Updated: 2024-03-07 00:39 (UTC)

Latest Comments

« First ‹ Previous 1 .. 16 17 18 19 20 21 22 23 24 25 26 27 Next › Last »

Jesse2004 commented on 2016-01-04 07:25 (UTC)

Bug: does not support fcitx input framework. See https://support.rstudio.com/hc/en-us/articles/205605748-Using-RStudio-0-99-with-Fctix-on-Linux. I tried copying /usr/lib/qt/plugins/platforminputcontexts/libfcitxplatforminputcontextplugin.so to /usr/lib/rstudio/bin/plugins/platforminputcontexts but couldn't get it to work. While /usr/lib/rstudio/bin/plugins/platforminputcontexts already has libibusplatforminputcontextplugin.so so the ibus input framework works.

hopimet commented on 2015-12-30 17:46 (UTC)

@framar, Try to build the package in an other directory. yaourt -a rstudio-desktop-bin --tmp ~/ Your error is related to an an insufficient disk space in /tmp where packages are built by default.

framar commented on 2015-12-29 13:34 (UTC)

@hopinet You're rigth. Thank you. I have another error : -> Compression du paquet... xz : (stdout) : Erreur d'écriture : Aucun espace disponible sur le périphérique bsdtar: Write error ==> ERREUR : Échec à la création du paquet. How can I solve it?

hopimet commented on 2015-12-28 18:47 (UTC)

@framar, If you're on the 32 bits version the problem is related to the absence of rsclang. First, install clang if it's not already done. Then, follow my previous post and modify the pkgbuild as follows: mkdir -p "$pkgdir/usr/lib/rstudio/bin/rsclang" # because rsclang is not created cd "$pkgdir/usr/lib/rstudio/bin/rsclang" # unchanged ln -sf /usr/lib/libclang.so ./ # a symlink for libclang.so, so you need clang #patchelf --set-rpath '$ORIGIN/..' libclang.so # commented because it gives the following error 'stat: No such file or directory.'

framar commented on 2015-12-28 18:11 (UTC)

I have this problem : /tmp/yaourt-tmp-franck/aur-rstudio-desktop-bin/./PKGBUILD: ligne 68 : cd: /tmp/yaourt-tmp-franck/aur-rstudio-desktop-bin/pkg/rstudio-desktop-bin/usr/lib/rstudio/bin/rsclang: Aucun fichier ou dossier de ce type How can I solve it?

woodape commented on 2015-11-04 10:32 (UTC) (edited on 2015-11-04 10:33 (UTC) by woodape)

package breaks with latest upgrade from official repositories: requires: harfbuzz-1.0.6-1-x86_64.pkg.tar.xz harfbuzz-icu-1.0.6-1-x86_64.pkg.tar.xz lib32-harfbuzz-1.0.6-1-x86_64.pkg.tar.xz icu-55.1-1-x86_64.pkg.tar.xz lib32-icu-55.1-1-x86_64.pkg.tar.xz Latest in official repos is: harfbuzz-1.0.6-2-x86_64.pkg.tar.xz harfbuzz-icu-1.0.6-2-x86_64.pkg.tar.xz lib32-harfbuzz-1.0.6-2-x86_64.pkg.tar.xz icu-56.1-1-x86_64.pkg.tar.xz lib32-icu-56.1-1-x86_64.pkg.tar.xz downgrading solves the issue

hopimet commented on 2015-09-27 19:21 (UTC)

OK I was right. In the 64-bit .deb package there is a subdirectory /usr/lib/rstudio/bin/rsclang/ providing libclang.so. This subdirectory (and of course libclang.so) is not present in the 32-bit .deb package.

hopimet commented on 2015-09-27 19:04 (UTC)

Well, I have some new informations. The pkgbuild works well in 64 bits architecture. In 32 bits it still doesn't install with the same errors I previously reported. So I modified the pkgbuild and added: mkdir -p "$pkgdir/usr/lib/rstudio/bin/rsclang" # because rsclang is not created cd "$pkgdir/usr/lib/rstudio/bin/rsclang" # unchanged ln -sf /usr/lib/libclang.so ./ # a symlink for libclang.so, so you need clang #patchelf --set-rpath '$ORIGIN/..' libclang.so # commented because it gives the following error 'stat: No such file or directory.' Then it worked (installed on 2 computers). I suspect the 32 bits .deb has a problem because there is no rsclang subdirectory after decompression.

linux_dream commented on 2015-09-27 15:06 (UTC)

The latest package installs correctly here, but fails with a seg. fault at executing: http://pastebin.com/KiiTXJVq.

artemklevtsov commented on 2015-09-27 10:37 (UTC)

@hopimet: use mkdir -p.