Anaconda / Rstudio displays low resolution on mac retina screen

The Rstudio installation contained in Anaconda 4.3.1 is showing in low resolution on my macbook with mesh screen.

Other anaconda apps but also a standalone version of Rstudio.

Any ideas on how this can be solved?

+3


source to share


2 answers


This is a legacy since we have supported macOS 10.7.

Open the file RStudio.app/Contents/Info.plist

and add:

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

.. near the end, just before </dict>



After that, you may need to update the cached macOS information after editing and before restarting.

From terminal:

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

I added it to the code so the next time I rebuild it it won't be skipped.

+2


source


Same problem. My preliminary solution is to run RStudio from the command line. First activate the desired workspace, then start RStudio:



source activate workspace-name
RStudio

      

0


source







All Articles