-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.html
100 lines (90 loc) · 3.77 KB
/
install.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Install V#</title>
<link rel="stylesheet" href="install-style.css">
</head>
<body>
<header class="hero">
<div class="container">
<h1>Install V#</h1>
<p>Follow these steps to get started with V# on your machine</p>
</div>
</header>
<nav class="main-nav">
<div class="container">
<a href="index.html">Home</a>
<a href="https://github.com/funcieqDEV/VSharp/">GitHub</a>
<a href="learn.html">Learn</a>
</div>
</nav>
<section class="install-steps">
<div class="container">
<h2>Step-by-Step Installation Guide</h2>
<p>
To begin working with V#, follow the instructions below to install it on your system.
</p>
<div class="step">
<h3>1. Install .NET 7.0</h3>
<p>
V# requires .NET 7.0 to run. If you haven't already installed it, download and install
it from the official <a href="https://dotnet.microsoft.com/download/dotnet/7.0">.NET download page</a>.
</p>
</div>
<div class="step">
<h3>2. Download V# from GitHub</h3>
<p>
Head over to the <a href="https://github.com/funcieqDEV/VSharp/">V# GitHub repository</a> and clone or download the latest version of the language.
You can clone the repository with this command:
</p>
<pre><code>git clone https://github.com/funcieqDEV/VSharp.git</code></pre>
</div>
<div class="step">
<h3>3. Run the Installation Script</h3>
<p>
Navigate to the directory where you cloned the repository and run the installation script. This will install
all necessary dependencies and set up V# for you.
</p>
<pre><code>cd VSharp
./install.sh</code></pre>
</div>
<div class="step">
<h3>4. Verify the Installation</h3>
<p>
Once the installation is complete, verify that V# is properly installed by running:
</p>
<pre><code>vsharp --version</code></pre>
<p>If the installation was successful, this will display the version of V# installed on your system.</p>
</div>
</div>
</section>
<section class="post-install">
<div class="container">
<h2>Next Steps</h2>
<p>
Congratulations! You've successfully installed V#. You can now start creating projects and exploring the language's capabilities.
Here are some useful resources to help you get started:
</p>
<div class="resource">
<h3>Learn V#</h3>
<p>
Dive into the <a href="learn.html">Learn V# guide</a> to familiarize yourself with the basics of the language and its syntax.
</p>
</div>
<div class="resource">
<h3>GitHub Repository</h3>
<p>
Explore the <a href="https://github.com/funcieqDEV/VSharp/">V# GitHub repository</a> for more information, community projects, and contributions.
</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 V# Documentation. All rights reserved.</p>
</div>
</footer>
</body>
</html>