Brew Vscode
FeaturesThis extension allows you to develop apps for Husarion devices using VSCode. RequirementsOn Windows, all dependencies will be downloaded automatically. All you have to do is: On Linux, this extension requires you to install CORE2 toolchain:
On Mac, you have to follow the steps below: If you don't have brew installed, follow the instructions at https://brew.shInstall C++ cross-compiler - execute in the terminal: Install CMake, Ninja and STLink: Download and install VS Code from https://code.visualstudio.com/ Launch VS Code, press Ctrl-Shift-X, find 'husarion' extension and click 'Install'. VS Code will ask you if you want to install also the dependencies - agree. Reload VSCode. Using the extensionTo create new project, select empty folder, press Ctrl-Shift-P, type “create husarion project' and press enter. To build project, press Ctrl+Shift-B. To flash project on your device, press Ctrl+Shift+P, type 'Flash project to CORE2' and press enter. More documentation is available at https://husarion.com/tutorials/ |
Run and debug your Linux-based applications from the comfort of Windows while maintaining access to productivity tools like Outlook and Office use the VS Code built-in terminal to run your Linux distribution of choice take advantage of VS Code features like Intellisense code completion, linting, debug support, code snippets, and unit testing. Microsoft’s vscode source code is open source (MIT-licensed), but the product available for download (Visual Studio Code) is licensed under this not-FLOSS license and contains telemetry/tracking. Installing VSCodium.


tldr; install brew; brew install python

Homebrew is a great installer for Mac and its main job is to make it easier to install packages.
Step 1: Download Homebrew here
'brew' hosts its package information here as “formulae“.
Step 2: Use brew to install the latest version of Python
$ brew install python --verbose

Now you can run python3 in your terminal
> python3
More details: So what happens when I run brew install?
Brew Install Vscode
When you run the command, brew will look for the package in the “formulae” list and run the installation script for the package.
Brew installs *all* packages into its own directory on your computer at /usr/local/Cellar .
Brew Vscode Path
Take a look with $ ls /usr/local/Cellar.
Macos Brew Vscode
After installation, brew creates a symlink which is basically a shortcut that will allow your system to run the new command > python3.
