VS Code is an increasingly popular IDE for coding in Python, created by Microsoft. This version is available from the AUR.
[[email protected] ~]$ pamac search visual-studio-code-bin --aur visual-studio-code-bin 1.62.0-1 AUR Visual Studio Code (vscode): Editor for building and debugging modern web and cloud applications (official binary version)
You can install MS VS Code with the following.
[[email protected] ~]$ pamac build visual-studio-code-bin
There is also an open source implementation of Code available from the official repository.
[[email protected] ~]$ pamac search code ... code 1.61.0-1 community
This version can be installed with.
[[email protected] ~]$ pamac install code
And that should be it! Open it up and select your theme.

I normally create a new python virtual environment for each new project I’m working on.
[[email protected] ~]$ mkproject binance-demo ... Creating /home/andy/Devel/binance-demo Setting project for binance-demo to /home/andy/Devel/binance-demo (binance-demo) [[email protected] binance-demo]$
And then launch code from the current working directory.
(binance-demo) [[email protected] binance-demo]$ code .

I really like it and it looks great!
Be the first to comment