Bonus Content

This is a miscellaneous page to host walk-throughs of topics that come up via the Discussion Page. Rather than re-explain how to in the comments, I want to have a place to post short-walkthroughs to solve these issues, while avoiding incorporating it into the existing walk-throughs at this point in time. I hope you find it useful, and pardon the organized chaos of miscellaneous topics.
00_WorkStationSetup
Windows Arm
Positron
On the main Positron installation page, only the installers for Windows Computers with x86 chips are currently shown. There is a beta (experimental) version of Positron for Windows ARM (ex. Snapdragons), but it needs to be installed from Positron’s GitHub releases page.

Please note, you should download the most recent version that is available to you, as they continue to update it and fix bugs. As of February 04, 2026, you would also need to install Quarto separately.
To install Quarto, first navigate to their website. Quarto for Windows ARM was implemented in 2023, so the regular installer should work.

Also, you would need a Python arm64 installation installed if you decide you want to venture into using Python at any point.
00_Positron
Visual Mode
Within Positron, there exist a toggle button to switch between source and visual mode on Quarto documents. But what do you do when you can’t find it?

Tuns out…. Visual Mode is currently broken, so the developers removed it about two weeks ago.
The current way to switch to it is via right-click, then select edit visual mode.

Vice versa, once there, you can revert by right-clicking and selecting Edit Source Mode

The process of figuring what is going on highlights how to use a GitHub Discussion Page. This is Positrons when I searched for visual button. I then found that a similar question was asked 3 days ago that led me to the linked thread above.

00_Git
Not Detecting Git
If you leave the “Initialize Git Repository” option unclicked when setting up a New Folder from Template, Git will not be active within your project folder.

As a result, when you try to use the usethis packages use_github(private=true) function, you will get an error that resembles the one below

To initiate a Git repository after the fact, you will need to go to the Version Control tab in the action bar, and select the option.

Then, you will need to stage the files you want to work with, and commit them.

use_github(private=TRUE) should now be functional at that point. However, you can also choose to continue via Positron’s interface instead by selecting Publish.

It will then ask you whether you want to save it as either a Public or a Private repository.

And if all goes well, you will see the “Successs” pop-up in the lower-right

