search for: httpuv

Displaying 16 results from an estimated 16 matches for "httpuv".

2013 Jul 15
2
linking modules - add needed libraries
Hi Hopefully this is the correct mailing list. Sorry if not. I am still fighting to install "shiny" on Solaris OS. For this I need the package 'httpuv' which makes troubles during linking. R version 3.0.1 (2013-05-16) -- "Good Sport" is working well. The compile steps result is below. I have more a general question. The problem is clear: The symbol "sendfile64" is not found as the necessary library is not linked. The fi...
2014 Mar 07
2
Rcpp problems while installing httpuv / running build-dep r-base-core
Hello all, I am in the process of trying to install Shiny Server on a DreamHost VPS. As Shiny Server must be built on Debian, I've been muddling my way through the steps but I have run into a roadblock w/ httpuv. Following these <https://github.com/rstudio/httpuv> instructions, I ran the devtools::install_github('httpuv', 'rstudio') command and received the error pasted below. devtools::install_github("httpuv", "rstudio") Installing github repo httpuv/master from...
2015 Apr 14
1
httpuv not installing on fedora 19
Hi: I'm on fedora 19 ( I know. I'm behind : ) and I'm trying to install the httpuv library which depends on Rcpp. When I try to install it with dependencies = TRUE, I get the following error. ( I'm only showing the end of the install messages. Things go okay for a good while ). INSTALLATION MESSAGES #================================================================ make[1]:...
2015 Apr 14
1
httpuv not installing on fedora 19
...#39;s not it. The error is that you don't have the g++ binary installed. Undo that change and yum install gcc-c++. On Apr 14, 2015 8:31 AM, Mark Leeds <markleeds2 at gmail.com> wrote: > > Hi: I'm on fedora 19 ( I know. I'm behind : ) and I'm trying to install the > httpuv library > which depends on Rcpp. When I try to install it with dependencies = TRUE, > I get the following error. ( I'm only showing the end of the install > messages. Things > go okay for a good while? ). > > INSTALLATION MESSAGES > #==================================...
2015 Apr 14
0
httpuv not installing on fedora 19
.../> <br /> On Apr 14, 2015 8:31 AM, Mark Leeds <<a href="mailto:markleeds2@gmail.com">markleeds2@gmail.com</a>> wrote:<br /> ><br /> > Hi: I'm on fedora 19 ( I know. I'm behind : ) and I'm trying to install the<br /> > httpuv library<br /> > which depends on Rcpp. When I try to install it with dependencies = TRUE,<br /> > I get the following error. ( I'm only showing the end of the install<br /> > messages. Things<br /> > go okay for a good while  ).<br /> ><br /&...
2020 Mar 26
3
Rebuilding and re-checking of downstream dependencies on CRAN Mac build machines
...ly available information on the CRAN web server, it looks like the answer to (B) is also no, the downstream dependencies do not get rebuilt. Looking at https://www.r-project.org/nosvn/R.check/r-release-osx-x86_64/, I see the following dates for these binary packages: - Rcpp_1.0.4.tgz: 2020-03-18 - httpuv_1.5.2.tgz: 2019-09-12 - dplyr_0.8.5.tgz: 2020-03-08 Rcpp was released recently, and httpuv and dplyr (which are downstream dependencies of Rcpp) have older dates, which indicates that these binary packages were not rebuilt when Rcpp was released. In my particular case, I'm interested in the h...
2013 Jul 22
1
fail to install shiny package in R 3.0.1 on Ubuntu
...lazy loading Error : package ‘codetools’ was built before R 3.0.0: please re-install it Error : unable to load R code in package ‘Rcpp’ ERROR: lazy loading failed for package ‘Rcpp’ * removing ‘/home/alex/R/x86_64-pc-linux-gnu-library/3.0/Rcpp’ ERROR: dependency ‘Rcpp’ is not available for package ‘httpuv’ * removing ‘/home/alex/R/x86_64-pc-linux-gnu-library/3.0/httpuv’ ERROR: dependency ‘httpuv’ is not available for package ‘shiny’ * removing ‘/home/alex/R/x86_64-pc-linux-gnu-library/3.0/shiny’ The downloaded source packages are in ‘/tmp/RtmpA7KumO/downloaded_packages’ Warning messages: 1: In inst...
2020 Mar 26
0
Rebuilding and re-checking of downstream dependencies on CRAN Mac build machines
...ould take over 24h - currently the nightly build of packages takes 16-22 hours), but we're currently building a new setup for R 4.0.0 on new hardware and as a part of it we are planning to setup a "mac-builder" similar to what is currently available for Windows. That said, I have run httpuv by hand on the CRAN build machine (against Rcpp 1.0.4) and I saw no issues. I have seen the discussion on Rcpp, but so far no one actually posted details of what is breaking (nor do your links include any actual details on this). I'd love to help, but the lack fo a useful report makes this impo...
2017 Sep 28
1
rgl crash on windows 7
...ry/3.4/Rcpp/libs/x64/Rcpp.dll TRUE htmltools c:/kw/R/win-library/3.4/htmltools/libs/x64/htmltools.dll FALSE jsonlite c:/kw/R/win-library/3.4/jsonlite/libs/x64/jsonlite.dll TRUE tools C:/Program Files/R/R-3.4.1/library/tools/libs/x64/tools.dll FALSE httpuv c:/kw/R/win-library/3.4/httpuv/libs/x64/httpuv.dll TRUE mime c:/kw/R/win-library/3.4/mime/libs/x64/mime.dll TRUE rgl c:/kw/R/win-library/3.4/rgl/libs/x64/rgl.dll FALSE Can I manually load the DLLs and then load rgl? Any tips on how to proceed would be appreciated. -...
2024 Dec 05
2
Exposing native httpd server
R has a native HTTP server that is used for serving R help pages interactively, at least on the loopback device (127.0.0.1) But all of the working are internal, not exposed to user and not documented. This is quite shame since the server seems to be fully capable of handling basic tasks, be it serving static websites or even interactively processing queries. This was previously noticed by
2024 Dec 06
1
Exposing native httpd server
...ed on the Rserve package and you always have much larger flexibility there. There are also higher level abstractions like RestRserve. So if you like the internal server then you can seamlessly use Rserve as the API was derived from there. Of course there are other alternatives in package space like httpuv. We typically don't want to fold things into core R unless it's absolutely necessary - i.e., if they can happily live in package space. In short, I'm still not convinced that you really want to use the built-in sever. Although it is a fully featured http server, it was included for a v...
2024 Dec 08
2
Exposing native httpd server
...ed on the Rserve package and you always have much larger flexibility there. There are also higher level abstractions like RestRserve. So if you like the internal server then you can seamlessly use Rserve as the API was derived from there. Of course there are other alternatives in package space like httpuv. We typically don't want to fold things into core R unless it's absolutely necessary - i.e., if they can happily live in package space. > > In short, I'm still not convinced that you really want to use the built-in sever. Although it is a fully featured http server, it was include...
2020 Jun 25
2
R 4.0.0 rebuild status
On Thu, 25 Jun 2020 at 19:01, Jos? Ab?lio Matos <jamatos at fc.up.pt> wrote: > > On Wednesday, 24 June 2020 10.42.10 WEST I?aki Ucar wrote: > > Thanks, Jos? and Elliott. I can help with reviews. > > > > I attach here a list of batches of CRAN packages to be rebuilt in > > order (batches separated by a blank line), and the script that > > generates it. Hope
2020 Jun 26
2
R 4.0.0 rebuild status
...1 - was missing dependencies before, I think? gargle 0.5.0 0.4.0 - was missing latest testthat; should be fine to update glue 1.4.1 1.3.2 - requires new vctrs; do not bump haven 2.3.0 2.2.0 - requires new vctrs; do not bump httpuv 1.5.4 1.5.3.1 later 1.1.0.1 1.0.0 lubridate 1.7.8 1.7.4 - should be okay to build 1.7.8, but not 1.7.9, as it needs new vctrs matrixStats 0.56.0 0.55.0 - there are 'significant changes', but I'm not familiar with this package for...
2024 Dec 08
1
Exposing native httpd server
...ou always have much larger flexibility there. There are also higher >> level abstractions like RestRserve. So if you like the internal server >> then you can seamlessly use Rserve as the API was derived from there. >> Of course there are other alternatives in package space like httpuv. >> We typically don't want to fold things into core R unless it's >> absolutely necessary - i.e., if they can happily live in package space. >> >> In short, I'm still not convinced that you really want to use the >> built-in sever. Although it is a full...
2019 Jul 04
2
Fwd: Fedora 31 System-Wide change proposal: Automatic R runtime dependencies
...Ranges * R-getPass * R-ggplot2 * R-ggplot2movies * R-gh * R-git2r * R-globals * R-glue * R-gmailr * R-gmp * R-gplots * R-gsl * R-gss * R-gtable * R-gtools * R-haven * R-here * R-hexbin * R-hgu133acdf * R-hgu95av2cdf * R-hgu95av2probe * R-highlight * R-highr * R-hms * R-htmltools * R-htmlwidgets * R-httpuv * R-httr * R-hunspell * R-igraph * R-import * R-ini * R-inline * R-IRanges * R-IRdisplay * R-IRkernel * R-iterators * R-itertools * R-jose * R-jpeg * R-jqr * R-jsonlite * R-knitr * R-labeling * R-lambda.r * R-later * R-lazyeval * R-lintr * R-listenv * R-littler * R-lmodel2 * R-lmtest * R-lokern * R...