i need help why isnt C:\Users\ollie\.deno\bin\deno.exe showing up?
for some reason, C:\Users\ollie.deno\bin\deno.exe isnt showing up i just made deno and i cant find it on mny pc
2 Replies
It sounds like you're having trouble locating the
deno.exe
executable after installation on your Windows machine. According to the documentation, Deno is a single binary executable and should be located in the specified directory after a successful installation.
Here are a few steps you can take to troubleshoot this issue:
1. Verify Installation: First, ensure that Deno was installed correctly. You can do this by opening a command prompt and typing deno --version
. If Deno is installed and the path is set correctly, this command should return the version of Deno installed on your system.
2. Check PATH Environment Variable: If the deno --version
command does not work, it's possible that the Deno binary path has not been added to your system's PATH environment variable. You can add the Deno binary path to your PATH by following these steps:
- Search for "Environment Variables" in your Windows search bar and select "Edit the system environment variables."
- In the System Properties window, click on "Environment Variables."
- Under "System variables," find the Path
variable and select "Edit."
- Add the path C:\Users\ollie\.deno\bin
to the list of paths.
- Click "OK" to save the changes and close all remaining windows.
- Open a new command prompt and try running deno --version
again.
3. Reinstall Deno: If the above steps do not resolve the issue, consider reinstalling Deno. You can find the official installation instructions on the Deno website: https://deno.land/#installation. Follow the instructions for Windows to reinstall Deno.
Please note that the advice provided here is general troubleshooting advice and not directly from the documentation. If you continue to experience issues after trying these steps, you might want toconsider reinstalling Deno using the official installation instructions. 🦕
Helpful Links:
Ran all install commands and now getting errors - Deno
Installation - Deno Docs
Deno 1.36: More flexible security and expanded testing APIs
Deno Docs
Deno 1.29: Custom npm registry support
Private Modules and Repositories | Deno Docs
Deno 1.28: Featuring 1.3 Million New Modules
Deno Docs
Deno Docs