I'm trying to install System.Data.Sqlite development-time components - I want to be able to connect to SQLite databases from Visual Studio, execute queries, and retrieve data.
Following the instructions on the System.Data.Sqlite download page, I downloaded the installation kit for 32-bit Windows, oriented to .NET. 4.6.
When I try to install, I get the following error:
Unable to install Microsoft Visual C ++ Runtime: vcredist_x86_2015_VSU2.exe, another version of this product is already installed. Installation of this version cannot continue. To configure or remove an existing version of this product, use the Add or Remove Programs tool in the control panel.
I am running Visual Studio 2015 Community Edition Update 3 with cumulative fixes available here ; on Windows 10 64-bit. I tried uninstalling the Microsoft Visual C ++ 2015 Redistributable (x86) version and restarting the VS 2015 Community Edition patch installer to reinstall it and then restart the SQLite installer, but the same error still occurred.
How can i solve this?
source
share