'How to run a VBA Macro on Linux machine?

I Have a VBA code that i want to run on a linux machine.

This VBA code actually check for cosmetic error in python scripts. We create our scripts on Linux machines and then for review we copy it on windows machine just to run vba code.

If anyone can help me to run the same code on linux machine then it would be of great help.



Solution 1:[1]

VBA is Visual Basic for Applications (runs inside Word, Excel, etc).

VB(Visual Basic) is a native windows application.

All of them can usually run on Linux by using wine. Make sure to install wine using(assuming you are using a Debian-based distro):

 apt-get install wine

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user4098326