How to Install Vlang on Linux
V is a simple compiled programming language that embodies a mantra of having only "one way to do things". The language is designed for performance, security and fast compilation and can be learned in a weekend, according to it's creators.
The V programming language can be installed on the most popular platforms including Linux, macOS, Windows, *BSD, Solaris, WSL, Android, Raspbian. In this tutorial we will be focusing on Linux.
1. Clone the V repository
git clone --depth=1 https://github.com/vlang/v
2. Navigate into project folder
cd v
3. Run Make
make
4. Move the V project folder to /opt
cd ..
mv v/ /opt
5. Create a Symlink
cd /opt/v/
sudo ./v symlink
6. Verify that the installation was successful
v version
Freddie
2 years, 3 months ago
0