can't install Azcopy in linux
by Alexmicu from LinuxQuestions.org on (#6DCG4)
I'm using Debian 10 VM and X64 architecture, i have download SDK from https://dotnet.microsoft.com/en-us/d...x-x64-binaries, then i run :
mkdir -p $HOME/dotnet && tar zxf dotnet-sdk-6.0.412-linux-x64.tar.gz -C $HOME/dotnet
export DOTNET_ROOT=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
and I have verified Dot NET version. so i use below script to install azcopy
wget -O azcopy.tar.gz https://aka.ms/downloadazcopyprlinux
tar -xf azcopy.tar.gz
sudo ./install.sh
But it hits error message saying Dotnet core is not installed
why it doesn't allow me to install azcopy even if i have Dotnet instaled.
mkdir -p $HOME/dotnet && tar zxf dotnet-sdk-6.0.412-linux-x64.tar.gz -C $HOME/dotnet
export DOTNET_ROOT=$HOME/dotnet
export PATH=$PATH:$HOME/dotnet
and I have verified Dot NET version. so i use below script to install azcopy
wget -O azcopy.tar.gz https://aka.ms/downloadazcopyprlinux
tar -xf azcopy.tar.gz
sudo ./install.sh
But it hits error message saying Dotnet core is not installed
why it doesn't allow me to install azcopy even if i have Dotnet instaled.