I am trying to install Deno in my Ubuntu machine but I can't. Ubuntu Version is 18.04.
I am using this command:
curl -fsSL https://deno.land/x/install/install.sh | sh
It has provided by Deno's official page. After installing Deno, I set below configuration in .bash_profile
.
export DENO_INSTALL="/home/azmul/.local"
export PATH="$DENO_INSTALL/bin:$PATH"
After doing this when I try to run deno command on my terminal. I always found 'deno' not found on my terminal. I don't know what should i do. If anyone has a good sound about this please give me an answer.
.bash_profile
afterwards? – DisappearDENO_INSTALL
before installation if you want to use a non-default location during install. See: github.com/denoland/deno_install#environment-variables – Abbreviate