I am using Ubuntu 19.04. How do I install Microsoft Visual Studio 2017 on it?
Asked
Active
Viewed 1.0k times
-2
-
3Welcome to AU. Please review How to ask a good question and edit your question accordingly. For instance, did you try answers already given for other versions of Ubuntu? Where did you have a problem? – Marc Vanhoomissen Jul 01 '19 at 09:39
1 Answers
2
Visual Studio is an IDE for Windows, so you can't install it on Ubuntu. You can try to install it with Wine, however, I wouldn't attach too much hope for that.
And there is a free Visual Studio Code which is an extendable text editor and it has a Linux edition. You can install it as a snap:
sudo snap install --classic code
Or, alternatively you can download a .deb package from the Microsoft's website. And install it like:
sudo apt install ./<file>.deb

Bence László
- 121
-
-
Download the .exe installer for Windows, then install it with
wine <vs-2017-executable-name>.exe
, but it is qualified as "garbage" on the WineHQ database: https://appdb.winehq.org/objectManager.php?sClass=version&iId=35535Which means, it isn't usable.
One more alternative is Monodevelop, if you are developing in C#, which is a cross-platform IDE, but not not as feature rich as Visual Studio: https://www.monodevelop.com/
– Bence László Jul 01 '19 at 09:58 -
after download .exe and download wine then sudo ./visual studio ? it is right – qala Jul 01 '19 at 10:09