<-

Getting Started with Neit

Linux

Ready to unleash the power of Neit on Linux? Awesome! Head over to the bins folder inside the Neit GitHub repository. There, you’ll find the latest versions of Neit for Linux – we’ve got both musl and glibc versions for you, so pick the one that fits your system. After you’ve downloaded your version, open the folder in your terminal (let’s assume it’s in the Downloads folder). Now, depending on the version you downloaded, run the following commands: For the musl version, use: Neit@Oxumlabs(~/Downloads)~> sudo mv ~/Downloads/neit-musl /usr/bin/neit For the glibc version, use: Neit@Oxumlabs(~/Downloads)~> sudo mv ~/Downloads/neit-glibc /usr/bin/neit Once that’s done, you’ll want to reload your shell. The easiest way is to just close the terminal and open it again. Then, for bash users, run: Neit@Oxumlabs(~/Downloads)~> source ~/.bashrc And voila! You can now type neit to start coding with Neit. 🎉

Windows

Alright Windows user, let's get Neit up and running! First, head to the bins folder in the Neit GitHub repository and download the latest `neit-win.exe` file. After you've downloaded it, navigate to your Downloads folder and follow these steps: First, create a folder named "Neit" in your "Program Files" directory. You can do this by opening **File Explorer**, going to **C:\Program Files**, right-clicking and selecting **New > Folder**, then naming it "Neit." Now, open **Powrshell** as Administrator by searching for “Powrshell” in the Start Menu, right-clicking it, and choosing “Run as Administrator.” In the Powrshell, navigate to your Downloads folder by running the following: cd C:\Users\YourUsername\Downloads Then, move the `neit-win.exe` to the "Neit" folder you created in **Program Files** by running: move neit-win.exe "C:\Program Files\Neit\neit.exe" Now, we need to make sure Windows can find Neit from anywhere in the system. To do this, we’ll add the path to Neit to the system’s PATH variable. First, open PowerShell as Administrator by searching for “PowerShell” in the Start Menu, right-clicking it, and selecting “Run as Administrator.” In PowerShell, run the following command to add Neit to your system PATH: $env:Path += ";C:\Program Files\Neit" This command updates the system's environment variables so that it knows where Neit is located. Once you’ve done that, restart your Powrshell (or PowerShell) and type: neit You should see Neit’s welcome message! If it doesn't work immediately, restart your computer to ensure the changes to your PATH take effect. And that's it! You're ready to start coding with Neit on Windows! 🎉

For other OSs , we are currently not providing binaries but they can be compiled in following manner
Firslty clone the repo git clone https://github.com/oxumlabs/neit and then you need to make sure rust is installed on your system and have a stable internet connection ,now head to neit's directory and run cargo build --release and then after it finishes building you can find the binary in target/release/ directory