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 .. 20 21 22 23 24 25 26 27 Next › Last »

johanzebin commented on 2014-01-19 13:05 (UTC)

Can confirm it working on latest x86-64 (Intel i5 processor).

zeltak commented on 2013-12-19 12:20 (UTC)

thx axil42 thats so weird, using the latest x86_64 as well thx Z

axil42 commented on 2013-12-19 11:36 (UTC)

@zeltak I just installed the latest version and it started normally (on x86_64).

zeltak commented on 2013-12-19 10:36 (UTC)

Hi all i am trying to get it to work but as with the post by fofo i cant get it to work, i launch the binary rstudio-desktop but it does nothing at all any help would be greatly appreciated, as i need it for uni work best Z

setempler commented on 2013-12-07 21:58 (UTC)

0.98.484 seems to be the next stable. http://www.rstudio.com/ide/download/desktop my modified PKGBUILD looks like this: # Contributor: Meow < meow at linux dot cn > pkgname=rstudio-desktop-bin pkgver=0.98.484 pkgrel=1 pkgdesc="A new integrated development environment (IDE) for R (binary version from RStudio official website)" arch=('i686' 'x86_64') license=('GPL') url="http://www.rstudio.org/" depends=('r>=2.11.1' 'pango>=1.14.0' 'qtwebkit') conflicts=('rstudio-desktop' 'rstudio-desktop-git') provides=("rstudio-desktop=${pkgver}") options=(!strip) _x86md5=SKIP _x64md5=98b1f39e29e8e26963934834e4cdb107 case "$CARCH" in 'i686') _arch=i386 md5sums=($_x86md5) ;; 'x86_64') _arch=amd64 md5sums=($_x64md5) ;; esac source=("http://download1.rstudio.org/rstudio-${pkgver}-${_arch}.deb") install="$pkgname".install package() { msg "Converting debian package..." cd "$srcdir" tar zxpf data.tar.gz -C "$pkgdir" install -dm755 "$pkgdir/usr/bin" cd "$pkgdir/usr/lib/rstudio/bin" rm lib*.so.* cd "$pkgdir/usr/bin" ln -s -f ../lib/rstudio/bin/rstudio rstudio-bin }

StreakyCobra commented on 2013-09-26 21:51 (UTC)

For interested people, there is a «preview» release of version 0.98 available at http://www.rstudio.com/ide/download/preview . New main features: Debugging and support for presentation creation. Lines to change (currently) in PKGBUILD (Yes, it's not safe, but I don't care about md5sums just for testing): pkgver=0.98.309 _x86md5=SKIP _x64md5=SKIP source=("https://s3.amazonaws.com/rstudio-dailybuilds/rstudio-${pkgver}-${_arch}.deb") News seen on: http://www.r-statistics.com/2013/09/r-3-0-2-and-rstudio-0-9-8-are-released/

<deleted-account> commented on 2013-07-28 11:37 (UTC)

If I install rstudio-desktop(-bin) package via AUR it get's installed but I can't start the program. It just quits without notice. ----- k@higgins ~ % rstudio-bin !308 k@higgins ~ % ----- k@higgins ~ % gdb rstudio-bin !309 GNU gdb (GDB) 7.6 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-unknown-linux-gnu". For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>... Reading symbols from /usr/lib/rstudio/bin/rstudio...(no debugging symbols found)...done. (gdb) run Starting program: /usr/lib/rstudio/bin/rstudio warning: no loadable sections found in added symbol-file system-supplied DSO at 0x7ffff7ffa000 warning: Could not load shared library symbols for linux-vdso.so.1. Do you need "set solib-search-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/usr/lib/libthread_db.so.1". [Inferior 1 (process 1372) exited normally] (gdb)

khughitt commented on 2013-03-02 20:04 (UTC)

qt dependency needs to be switched to qt4 (https://www.archlinux.org/news/qt4-replaces-qt/)

<deleted-account> commented on 2013-01-29 14:55 (UTC)

this is a pkgbuild for 0.97.312 open and repalce the current pkgbuild with this one enjoy ---cut here ---> pkgname=rstudio-desktop-bin pkgver=0.97.312 pkgrel=1 pkgdesc="A new integrated development environment (IDE) for R (binary version from RStudio official website)" arch=('i686' 'x86_64') license=('GPL') url="http://www.rstudio.org/" depends=('r>=2.11.1' 'pango>=1.14.0' 'qtwebkit') conflicts=('rstudio-desktop' 'rstudio-desktop-git') provides=("rstudio-desktop=${pkgver}") options=(!strip) case "$CARCH" in 'i686') _arch=i386 md5sums=('342e214ed85826e2ca5dfd9728d3f239') ;; 'x86_64') _arch=amd64 md5sums=('c42f88ee7ecf34651325e3b2399fa60d') ;; esac source=("http://download1.rstudio.org/rstudio-${pkgver}-${_arch}.deb") install="$pkgname".install package() { msg "Converting debian package..." cd "$srcdir" tar zxpf data.tar.gz -C "$pkgdir" install -dm755 "$pkgdir/usr/bin" cd "$pkgdir/usr/lib/rstudio/bin" rm lib*.so.* cd "$pkgdir/usr/bin" ln -s -f ../lib/rstudio/bin/rstudio rstudio-bin } <---end cut---