I am slowly wrapping my head around installing and building programs from git. The program I want is https://github.com/raryelcostasouza/pyTranscriber/, for Ubuntu 20.04.
I've tried clone-and-build instructions from https://www.howtogeek.com/428988/how-to-install-software-using-git-on-linux/, getting hung up on the make && make bit with this resulting output:
make: *** No targets specified and no makefile found. Stop.
I then I tried downloading the pyTranscriber-v1.5-linux-installer.zip file from https://github.com/raryelcostasouza/pyTranscriber/releases/tag/v1.5-stable and then following the instructions on https://ostoday.org/linux/how-to-install-sh-file-in-ubuntu.html – unzipping that folder, placing it in my home directory, and then getting stuck on trying to run the install.sh file. I get this error message:
mkdir: cannot create directory ‘/opt/pyTranscriber’: Permission denied
cp: target '/opt/pyTranscriber' is not a directory
chmod: cannot access '/opt/pyTranscriber/*': No such file or directory
cp: cannot create regular file '/usr/share/applications/pytranscriber.desktop': Permission denied
I's like to a\ install this particular program, and b\ understand the standard way of installing anything from GitHub/GitLab in the future. I've done this before just it's always trial by fire and I finally want to know what it is I'm doing :)