GridView
is an ASP.NET server control and as such simply requires any version of .Net installed on your computer along with a .Net development environment, typically any version of Visual Studio.
Assuming you have a .Net development environment, create any Web Forms Application or MVC Application project.
GridView
controls can be added via drag-and-drop from the designer toolbox or manually in the html markup on the Web Form/MVC View.
An empty GridView Control:
<asp:GridView ID="GridView1" runat="server">
</asp:GridView>