MiSTer-devel / Downloader_MiSTer

Tool for installing and updating MiSTer cores and other files
GNU General Public License v3.0
110 stars 15 forks source link

Running downloader_pc_launcher.py on windows #46

Open citystrawman opened 3 months ago

citystrawman commented 3 months ago

Hi, I am trying to run downloader_pc_launcher.py and my python version is 3.11: image however I could not run python3 so I changed the python script return subprocess.run(['python3', filename], env=env, stderr=subprocess.STDOUT).returncode to return subprocess.run(['python', filename], env=env, stderr=subprocess.STDOUT).returncode

Then I run the script and it is now running: image

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.

theypsilon commented 3 months ago

You need to wait until the whole process finishes without interruption. What do you see after that in that folder?

citystrawman commented 3 months ago

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:

image

and all the zip files in red box are not found.....