Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Step 5 returning "no such file or directory" #5

Open
jatk111 opened this issue Aug 22, 2020 · 3 comments
Open

Step 5 returning "no such file or directory" #5

jatk111 opened this issue Aug 22, 2020 · 3 comments

Comments

@jatk111
Copy link

jatk111 commented Aug 22, 2020

when entering the last part of step 5 which is '.cookpw.py PASSWORD >password.bin" im getting back this line "/usr/bin/env: ‘python’: No such file or directory"
Any idea what it could be?

@tsadarsh
Copy link

@jatk111 Are you running Linux OS?

@WesternGun
Copy link

Do you have python installed? Seems that you need the executable.

@konstantine-v
Copy link

I'm going to assume your on a UNIX-like platform a la MacOS, Linux, BSD, etc., you have python installed, and you have access to the command line.

cd into the directory where you either did a git clone or extracted the zip and run the below:
./cookpw.py PASSWORD > password.bin

The difference is that you were referencing .cookpw.py which would be a file named such, while using ./ or ../ denotes the position on the file system, with ./ being the current directory and ../ being the parent directory.

An alternative would be to reference the absolute path to the file, such as;
/path/to/cookpw.py PASSWORD > password.bin
With /path/to/ being something like /home/someuser/Downloads/ and so on...

I hope this helps answer your issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants