Now you say i should install cc65 using the apt-get install command, however when I input: sudo apt-get install cc65,
I get an error saying: unable to locate package cc65.
Should i manually download cc65, and if so, what command get's it installed then ?
Now, installing it is potentially another matter... we could go down a number of rabbit holes here. What I sometimes do is
$ env PATH=/path/to/tool/bin:$PATH command line
so for example
$ env PATH=/path/to/tool/bin:$PATH ca65
or
$ env PATH=/path/to/tool/bin:$PATH make
and that should work. It doesn't matter where your tool is, so long as you know where it is.
I don't know if it's easy to download and unpack a zip file in such a way that bash can see the results. You might do it from the command line:
$ wget http://example.com/path/to/file.zip
$ unzip file.zip