Reputation: 2702
i downloaded mysql-installer-5.5.17.0 for installing MySQL in my system,but when i run this i got the following message
"this application requires .NET Framework 4.0,please install the .NET Framework then run this installer again"
i want to install MySQL for my java application and i don't need to do any .NET application how i do that?what does the message means?
Upvotes: 3
Views: 37360
Reputation: 1
In order to install MySQL on a Windows computer, you must first have Python 2.7 (not Python 3+) installed.
You cannot run MySQL using Python 3.
Follow this link to download Python.
Upvotes: -1
Reputation: 1725
I also find this requirement very problematic... specially when most of the time MySQL is not being used with .NET applications... and a clean windows server installation does not include .NET 4 but an earlier version of .NET.
anyway you can install .NET 4 with no difficulty, just download the installer from the following links:
web install: http://www.microsoft.com/en-us/download/details.aspx?id=17851 standalone installaer: http://www.microsoft.com/en-us/download/details.aspx?id=22833
Roey
Upvotes: 4
Reputation: 387
If your OS is windows xp sp3 or higher, Then you can download .net framework 4.0 from website and then install mysql using windows installer.
http://www.microsoft.com/en-in/download/details.aspx?id=17718
hope it helps.
Upvotes: 0
Reputation: 432551
The MySQL installer on Windows requires .net. And it has been part of Windows since Vista...
This is separate from running MySQL or developing in another language
Upvotes: 1
Reputation: 308988
You don't need .NET to install MySQL on your machine. Sounds like you downloaded the wrong thing.
Whatever you tried, pick another one:
http://www.mysql.com/downloads/mysql/
Upvotes: -2
Reputation: 9870
The message means the installer for MySQL requires the .NET framework to run. Therefore, you'd need to either download the .ZIP package (which would require you to manually unpackage and install the MySQL server), or, if you just need to connect to a remote database with your Java application, you'd need to download the Connector/J JDBC driver from MySQL.
Upvotes: 4