Displaying 4 results from an estimated 4 matches for "_never".
Did you mean:
never
2018 Sep 22
4
libRblas.so: cannot open shared object file: No such file or directory
R 3.5.1 is installed under Linux Mint 19 from binaries r-base and
r-base-dev from ubuntu bionic-cran35.? Mysteriously, packages using
libRblas cannot be compiled.? I get: libRblas.so: cannot open shared
object file: No such file or directory.? And indeed, I find no libRblas.so.
Any ideas about how to fix this?
Thanks,
Steve
2018 Sep 22
0
libRblas.so: cannot open shared object file: No such file or directory
...02)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 18.04.1 LTS
Matrix products: default
BLAS: /usr/lib/x86_64-linux-gnu/openblas/libblas.so.3
LAPACK: /usr/lib/x86_64-linux-gnu/libopenblasp-r0.2.20.so
[...]
If Mint follows the setup I use for the Debian package, then you _never have
libRblas.so_ because we use the _external_ BLAS. This allows you to switch
to Atlas (tuned BLAS), OpenBLAS (multithreaded), Intel MKL (multithreaded and
possibly a little faster than OpenBLAS but much bigger), ...
Dirk
--
http://dirk.eddelbuettel.com | @eddelbuettel | edd at debian.org
2008 Sep 01
2
Autocreating INBOX only
...-m would be appropriate, i.e., whether anyone
needs the current -m behaviour.
It looks to me like one would need to change
mailbox_open_or_create_synced()
if (box != NULL || no_mailbox_autocreate)
return box;
to something like (assuming an enum mailbox_autocreate
{_never,_inbox,_always}
if (box != NULL)
return box;
if (mailbox_autocreate == mailbox_autocreate_never || strcasecmp
(mailbox, "INBOX") != 0)
return NULL;
2018 Sep 23
1
libRblas.so: cannot open shared object file: No such file or directory
...t; Running under: Ubuntu 18.04.1 LTS
>
> Matrix products: default
> BLAS: /usr/lib/x86_64-linux-gnu/openblas/libblas.so.3
> LAPACK: /usr/lib/x86_64-linux-gnu/libopenblasp-r0.2.20.so
> [...]
>
>
> If Mint follows the setup I use for the Debian package, then you _never have
> libRblas.so_ because we use the _external_ BLAS. This allows you to switch
> to Atlas (tuned BLAS), OpenBLAS (multithreaded), Intel MKL (multithreaded and
> possibly a little faster than OpenBLAS but much bigger), ...
>
> Dirk
>