Open citystrawman opened 5 months ago
You need to wait until the whole process finishes without interruption. What do you see after that in that folder?
You need to wait until the whole process finishes without interruption. What do you see after that in that folder?
yes. I waited until everything finished. Here's the screenshot:
and all the zip files in red box are not found.....
Hi, I am trying to run downloader_pc_launcher.py and my python version is 3.11: however I could not run python3 so I changed the python script
return subprocess.run(['python3', filename], env=env, stderr=subprocess.STDOUT).returncode
toreturn subprocess.run(['python', filename], env=env, stderr=subprocess.STDOUT).returncode
Then I run the script and it is now running:
Does that mean the script is downloading now? According to ReadMe it will download the files at the folder where the script exists, but I could not find the corresponding files(the directory exists).
I am not sure if I did it correct.