Need more beginner friendly instructions #51
|
Hello, I'm sure that for any programmers, power users, Linux veterans, greybeards, whitehats, comp sci majors, mensa members etc., the two sentences "No installation, no dependencies — just Python 3.14+ and a checkout of this repo. Run the package directly with python -m aur_check" makes perfect, obvious sense. But I'm embarrassed to admit that for me, it just doesn't. I don't know what I'm supposed to do with that. I'm just a regular schmuck. I know there's a concept of cloning a git repo, but I don't know by heart how it's done, and even degrading myself to get the help of an AI, I can't get it working. Since it is a matter of security, I would really and humbly appreciate some precise instructions from someone who, in contrast to me, know what they are doing. |
Replies: 5 comments
|
You might be missing the green |
|
Hi! I too had difficulties when i started with Linux (especially Arch). After some practice I started to understand how Git works, and now it comes naturally to me. These are the commands i followed to use this software, hope they help:
Now, if you have not installed your dependencies it will give you an error, otherwise it will work. Usually you just have to install python (if you don't have it) using your package manager of choice (for Arch you just use pacman / yay). When you use the command If you're having difficulty understanding git (which is a fundamental software, especially for Arch), i suggest you look at a Git cheat sheet, such as this one made by Github. If you don't understand how branches work, look at this cheat sheet made by Git, which has diagrams that show the before and after of a command. Hope I helped :) |
|
Thank you, got it working now. |
|
@Shotweb Next time when there are new commits, you can do:
|
|
I think this looks done. And more like a discussion. So I'll convert it to that. |
Hi! I too had difficulties when i started with Linux (especially Arch). After some practice I started to understand how Git works, and now it comes naturally to me. These are the commands i followed to use this software, hope they help:
cd ~/Documents/git clone https://github.com/lenucksi/aur-malware-checkcd aur-malware-check/python -m aur_checkNow, if you have not installed your dependencies it will give you an error, otherwise it will work. Usually you just have to install python (if you don't have it) using your package manager of choice (for Arch you just use pacman / yay).
When you use the command
git cloneyou are telling git to create a folder with the repository name in the …