I just wanted to point out that in this case you don't need sudo to execute git clone and make. In general, it's better to use the super-user powers only when needed.
this is my first attempt at installing something without a package manager
I think installing things yourself is a good exercise but I would suggest getting familiar with conda and bioconda as they take away a lot of headaches. (I assume that by package manager you mean Ubuntu's apt).
You are not missing anything. This is the classic problem of not having the directory which contains the bioawk executable in your system $PATH (a set of directories that are automatically searched when you try to run a program. You can add the directory containing the bioawk executable to $PATH by doing following (for bash shell)
I just wanted to point out that in this case you don't need
sudo
to executegit clone
andmake
. In general, it's better to use the super-user powers only when needed.I think installing things yourself is a good exercise but I would suggest getting familiar with
conda
andbioconda
as they take away a lot of headaches. (I assume that by package manager you mean Ubuntu'sapt
).