You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
to return 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.
The text was updated successfully, but these errors were encountered:
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
to
return 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.
The text was updated successfully, but these errors were encountered: