Skip to content
Pranav Verma edited this page Dec 3, 2024 · 11 revisions

https://tidal.pranavv.site

Welcome to the wiki.
Tidal is a Programming Language made by Pranav Verma.

Download

You can Download Tidal from the Releases. Choose the binary for your OS Type.

Add to PATH (Windows)

To Run Tidal from Anywhere, You will need to add it to the PATH. Follow these steps:

  1. Download the Binary.
  2. Store it in a Place where it wont get deleted.
  3. Copy the Path to that folder.
  4. Search for Edit the system environment variables in the Windows Search Bar.
  5. Click on the First Result.
  6. A Window should open up. Click on the Environment Variables Button.
  7. There should be two sections - User Variables and System Variables.
  8. In the User Variables Section, There should be a list item with variable name - Path. (You may need to scroll down)
  9. Double Click on the Path Variable.
  10. Now, on the Right, there should be an option of New. Click on it.
  11. Now, Paste the Folder Location of the Folder where you downloaded the Tidal Binary.
  12. Click on Ok < Ok < Apply.
  13. Restart your Computer.
  14. To Update, just Download the latest binary, and replace the binary in the parent folder.

There! Now, you should be able to use the command - td from anywhere!

Add to PATH (Linux Shell)

To Run Tidal from Anywhere, You will need to add it to the PATH. Follow these steps:

  1. Download the Binary.
  2. Store it in a Place where it wont get deleted.
  3. Copy the Path to that folder.
  4. Run this Command:
    nano ~/.bashrc
  5. A file should open in the Terminal. Add this to the bottom of the file:
    export PATH="/PATH/TO/TIDAL:$PATH"
    (Remember to Replace the Path, to where you downloaded the binary.) (Also, this should point to the parent folder of the binary.)
  6. Press Ctrl + X then Y then Enter to save.
  7. Now, Reload the Bash. To do that, run this command:
    source ~/.bashrc
  8. Thats it! Now, you can Run Tidal from Anywhere:
    td
  9. To Update, just Download the latest binary, and replace the binary in the parent folder.
Clone this wiki locally