chromeister icon indicating copy to clipboard operation
chromeister copied to clipboard

Directory not found

Open MarliesJFrancine opened this issue 1 year ago • 2 comments

Hi, when downloading the zip file "chromeister-1.5.a.zip" and unzipping it, I cannot install it by running the given command:

cd chromeister && make all -C src/ && python3 -m venv chromeisterenv && source chromeisterenv/bin/activate && pip install -r src/requirements.txt

There is not directory called "chromeister" in the unzipped file, nor is there an "activate" in the "bin" directory.

Am I missing something here or doing something wrong?

MarliesJFrancine avatar Sep 18 '24 12:09 MarliesJFrancine

Hello!

If you downloaded the zip (instead of doing a git clone ...) then most likely when you unzip the file you have a folder named chromeister-1.5.a or something like that. Then you would need to change the command to:

cd chromeister-1.5.a && make all -C src/ && python3 -m venv chromeisterenv && source chromeisterenv/bin/activate && pip install -r src/requirements.txt

If that does not work, can you post the contents of the folder in which you extracted the zip?

Have a nice weekend, Esteban

estebanpw avatar Sep 20 '24 12:09 estebanpw

Hi Esteban, Thank you for getting back to me! It works now, thanks a lot :)

Kind regards, Marlies

MarliesJFrancine avatar Sep 23 '24 08:09 MarliesJFrancine