Hi Team ,
We have a python script which invokes an azcopy command like below
os.system("azcopy copy {} 'https://8f****stg.blob.core.windows.net/dremioprodfs/tables/md/reflection_hist/<SAS Token here>' --recursive=true".format(dest_file))
It works perfectly fine when we directly trigger the python script ,but when we schedule through the crontab it does not work
in the log file we see that
sh: azcopy: command not found
Please provide a solution on this