Fixing ‘tnr not found’ Error

If you encounter the error 'tnr not found', it usually means your system can’t find the tnr command because Python’s scripts directory isn’t in your PATH environment variable.

Follow these simple steps to add Python’s scripts directory to your PATH:

# Open PowerShell as administrator and run:
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";" + "$env:USERPROFILE\AppData\Local\Programs\Python\PythonXX\Scripts", [EnvironmentVariableTarget]::User)

Verify the Fix

After updating your PATH, verify the fix by running:

tnr --version

If you see the version number, you’re all set!

Still Having Issues?

If problems persist, please reach out to us on Discord for further assistance.

Happy coding!