Anaconda/Rstudio 在 mac 视网膜屏幕上以低分辨率显示

Anaconda/Rstudio displays at low resolution on mac retina screen

Anaconda 4.3.1 中包含的 Rstudio 安装在我的视网膜屏幕 macbook 上以低分辨率显示。

其他 anaconda 应用程序,以及独立版本的 Rstudio 看起来都不错。

关于如何解决这个问题有什么想法吗?

同样的问题。我的临时解决方案是从命令行 运行 RStudio。首先激活所需的工作区,然后 运行 RStudio:

source activate workspace-name
RStudio

这是我们支持 macOS 10.7 时代留下的遗产。

打开您的 RStudio.app/Contents/Info.plist 文件并添加:

<key>NSHighResolutionCapable</key><true/>

.. 接近尾声,就在 </dict>

之前

之后您可能需要在编辑后重新启动前刷新 macOS 的缓存信息。

来自终端:

/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -v -f ${CONDA_PREFIX}/Applications/RStudio.app

我已将它添加到代码中,所以下次我重建它时不会遗漏它。