本文介绍了我怎么知道 R 是在 64 位还是 32 位上运行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的版本输出是:

> version
               _
platform       x86_64-w64-mingw32
arch           x86_64
os             mingw32
system         x86_64, mingw32
status
major          2
minor          15.2
year           2012
month          10
day            26
svn rev        61015
language       R
version.string R version 2.15.2 (2012-10-26)
nickname       Trick or Treat

其中 os 是 mingw32.这是否意味着我只使用 32 位?我该如何改变?

where os is mingw32. Does that mean I'm using only 32 bits? How can I change that?

推荐答案

这里有几个方法:

  • Sys.getenv("R_ARCH") 返回 "/i386""/x64" 至少在我的Windows 系统(但不是在我的 Ubuntu 系统上,它返回一个空字符串)

  • Sys.getenv("R_ARCH") returns either "/i386" or "/x64" at least on my Windows system (but not on my Ubuntu system where it returns an empty string)

Sys.info()[["machine"]] 在我的 Windows 上返回 "x86_32""x86_64"和 Ubuntu 系统.

Sys.info()[["machine"]] returns "x86_32" or "x86_64" on my Windows and Ubuntu systems.

更新:使用其他方法.

这篇关于我怎么知道 R 是在 64 位还是 32 位上运行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 14:50