Displaying 15 results from an estimated 15 matches for "r_tempdir".
2006 Aug 31
1
Overriding InitTempDir
For embedded projects, one may want to eliminate the per-session temp
directory created by InitTempDir() and just use a system-specific temp
directory. Here's my solution:
extern char *R_TempDir;
void my_InitTempDir()
{
char *tmp;
if (R_TempDir){
if (rmdir(R_TempDir) != 0){
perror("Fatal Error: could not remove R's TempDir!");
exit(1);
}
}
tmp = getenv("TMPDIR");
if (tmp == NULL) {
tmp...
2018 Aug 30
2
R_tempDir
Estimados
Tengo un error en windows 10, el mensaje dice : Error fatal: cannot create
R_tempDir
No tengo ni idea que pasó, esta semana no utilicé a R, hace dos semanas
seguro que sí, en el medio aparece el error, desinstalé y reinstalé
rstudio, de la misma forma R-Open de Microsoft 3.5.1, eliminé R client y
visual studio fue actualizado ayer. Intenté iniciar RServer desde visual
studio y no...
2018 Aug 30
2
R_tempDir
...iza algun otro usurio
> aca sea mas experto con eso y te pueda orientar con la solucion, ya que
> yo a lo mas te puedo decir que reinstalar no sirve mucho.
>
> En linux, ese mensaje podría significar que hay un problema con los
> permisos del lugar donde se quiere crear el directorio R_tempDir, asi es
> que verifica los permisos, por ahi debe haber alguna pista (windows
> tambien tiene permisos para cada directorio y los puedes cambiar),
>
> Suerte !!
>
> Eric.
>
>
>
>
> On 30/08/18 09:28, Javier Marcuzzi wrote:
> > Estimados
> >
> > Ten...
2018 Aug 30
2
R_tempDir
...rmisos, en windows 10, desde el centro de seguridad
> de windows defender, utilizando la opción para permitir a una aplicación a
> través de acceso controlado a carpetas, para todas las archivos ejecutables
> de R, Rgui, etc., falló con todos.
>
> No falla (error fatal: cannot create R_tempDir) cuándo ejecuto desde
> administrador.
>
> En pocas palabras no solucioné el problema.
>
> Javier Rubén Marcuzzi
>
> El jue., 30 ago. 2018 a las 13:57, Javier Marcuzzi (<
> javier.ruben.marcuzzi en gmail.com>) escribió:
>
> > Gracias Eric, podría ser un proble...
2012 Nov 14
0
R in batch mode: cannot mkdir R_TempDir
...imple R script in batch mode on a cluster. Running a
simple test script with
"R CMD BATCH test.R test.Rout"
works fine, but as soon as I submit the very same command to the queue and
the job gets sent to a node, the following error is written to test.Rout:
Fatal error: cannot mkdir R_TempDir
I set the environment variables TEMP, TMP and TMPDIR to /tmp/ and I also
make sure that all environment variables are set on the nodes. Running the R
command "tempdir()" on a node returns something like "/tmp/RtmpadvdoQ". I
also made sure that the /tmp/ directory is readable an...
2018 Aug 30
2
R_tempDir
...el centro de seguridad
>> de windows defender, utilizando la opción para permitir a una aplicación a
>> través de acceso controlado a carpetas, para todas las archivos
>> ejecutables
>> de R, Rgui, etc., falló con todos.
>>
>> No falla (error fatal: cannot create R_tempDir) cuándo ejecuto desde
>> administrador.
>>
>> En pocas palabras no solucioné el problema.
>>
>> Javier Rubén Marcuzzi
>>
>> El jue., 30 ago. 2018 a las 13:57, Javier Marcuzzi (<
>> javier.ruben.marcuzzi en gmail.com>) escribió:
>>
>>...
2009 Jun 18
1
Installation reg:-
Hi,
There is a problem installing R. I am using windows vista home
basic.
After installation and when i'm trying to access it, it shows "Fatal error:
cannot mkdir R_Tempdir"
and after pressing ok, it closes.
Can anyone help me out?
Regards,
Harish
[[alternative HTML version deleted]]
2003 Jun 17
1
problem with temp dir (PR#3272)
Hi,
I recently installed R on a Windows 95 machine. Everything went well untill
I tried to run the program. I get the R console and a message "fatal error
can't mkdir R_TempDir". The R-help archive has a report of a similar problem
but the instructions for repair seem to assume that the R console is
available (the program closes after the error). An installation on an
identical machine works fine? I would greatly appreciate help with this.
Regards
Alex
Alex Hanke
De...
2005 Jul 20
1
(PR#8017) build of REventLoop package crashes with 2.1 due
...> extern char* R_Home; /* Root of the R tree */
> 499c499
> < extern int R_Expressions INI_as(5000); /* options(expressions) */
> ---
>> extern int R_Expressions INI_as(500); /* options(expressions) */
> 514,515c514
> < LibExtern char* R_TempDir INI_as(NULL); /* Name of per-session
> dir */
> < extern char R_StdinEnc[31] INI_as(""); /* Encoding assumed for stdin
> */
> ---
>> extern char* R_TempDir INI_as(NULL); /* Name of per-session dir */
> 530d528
> < extern void R_setup...
2005 Jul 19
0
build of REventLoop package crashes with 2.1 due tosyntax error in Defn.h (PR#8017)
.../* Root of the R tree */
---
> extern char* R_Home; /* Root of the R tree */
499c499
< extern int R_Expressions INI_as(5000); /* options(expressions) */
---
> extern int R_Expressions INI_as(500); /* options(expressions) */
514,515c514
< LibExtern char* R_TempDir INI_as(NULL); /* Name of per-session
dir */
< extern char R_StdinEnc[31] INI_as(""); /* Encoding assumed for stdin
*/
---
> extern char* R_TempDir INI_as(NULL); /* Name of per-session dir */
530d528
< extern void R_setupHistory();
541,542c539
< LibExt...
2005 Oct 15
1
Hiccup in installing R 2.2.0
Yesterday I downloaded R-2.2.0.tar.gz, gunzipped and untarred, and
did the usual ./configure and make. Everything seemed to go smoothly
until it got to the bit about installing recommended packages. It
got past ``spatial'' but turned up a fatal error in respect of the
``boot'' package.
Here is some of what appeared on the screen:
2006 Oct 03
1
R-2.4.0 is released
...us was PARSE_INCOMPLETE or PARSE_ERROR.
o There is a new function Rf_endEmbeddedR to properly terminate
a session started by Rf_initEmbeddedR, and both are now
available on Windows as well as on Unix-alikes. These and
related functions are declared in a new header <Rembedded.h>.
If R_TempDir is set when embedded R is initialized it is
assumed to point to a valid session temporary directory: see
`Writing R Extensions'.
o There is a new interface allowing one package to make C routines
available to C code in other packages. The interface consists
of the routines R_RegisterCC...
2006 Oct 03
1
R-2.4.0 is released
...us was PARSE_INCOMPLETE or PARSE_ERROR.
o There is a new function Rf_endEmbeddedR to properly terminate
a session started by Rf_initEmbeddedR, and both are now
available on Windows as well as on Unix-alikes. These and
related functions are declared in a new header <Rembedded.h>.
If R_TempDir is set when embedded R is initialized it is
assumed to point to a valid session temporary directory: see
`Writing R Extensions'.
o There is a new interface allowing one package to make C routines
available to C code in other packages. The interface consists
of the routines R_RegisterCC...
2006 Apr 24
0
R 2.3.0 is released
...f to be used with the internal LAPACK has
been removed. If you have such a library you may now need
to use --with-lapack. It is no longer possible to use some
older versions of libsunperf, e.g. Forte 7 on 64-bit builds.
o A substitute for mkdtemp is provided, so it is now always
used for R_TempDir.
o Most of the functions checked for by 'configure' also have
declarations checked for in the appropriate header.
o The top-level documentation files AUTHORS COPYING.LIB COPYRIGHTS
FAQ RESOURCES THANKS have been moved to doc, and COPYING and NEWS
are installed there. The file...
2006 Apr 24
0
R 2.3.0 is released
...f to be used with the internal LAPACK has
been removed. If you have such a library you may now need
to use --with-lapack. It is no longer possible to use some
older versions of libsunperf, e.g. Forte 7 on 64-bit builds.
o A substitute for mkdtemp is provided, so it is now always
used for R_TempDir.
o Most of the functions checked for by 'configure' also have
declarations checked for in the appropriate header.
o The top-level documentation files AUTHORS COPYING.LIB COPYRIGHTS
FAQ RESOURCES THANKS have been moved to doc, and COPYING and NEWS
are installed there. The file...