No module named 'termios' when using module "wget" in Android - Ren'Py
Posted: Sat Jan 23, 2021 10:13 pm
Hello!!
In advance I apologize for my level of English. Unfortunately it is not my native language.
Some time ago I asked for help in this forum regarding the Python "wget" module, which is used to execute downloads and show the download progress of files.
Since then I have been doing several experiments generating compilations of a game until the Android compilation stopped me.
When starting the download in Android, "wget" requests to import the module "termios", which returns the exception :
I took a walk all over Google looking for a solution, but as you can already deduce, I was not successful.
I have Python v3.8 installed on my computer. I proceeded to import "termios" into the interpreter, which worked without a hitch. It is possible that this problem involves the engine over my project.
Regarding downloading files on Android, I'm using the "ANDROID _PUBLIC" (/0/Android/data/com.package.name/files/) path, and it works great when manipulating files from the game via the public path, so I completely rule out that the problem is due to the nature of Android.
In advance I apologize for my level of English. Unfortunately it is not my native language.
Some time ago I asked for help in this forum regarding the Python "wget" module, which is used to execute downloads and show the download progress of files.
Since then I have been doing several experiments generating compilations of a game until the Android compilation stopped me.
When starting the download in Android, "wget" requests to import the module "termios", which returns the exception :
Code: Select all
No module named 'termios'.
I have Python v3.8 installed on my computer. I proceeded to import "termios" into the interpreter, which worked without a hitch. It is possible that this problem involves the engine over my project.
Regarding downloading files on Android, I'm using the "ANDROID _PUBLIC" (/0/Android/data/com.package.name/files/) path, and it works great when manipulating files from the game via the public path, so I completely rule out that the problem is due to the nature of Android.
I appreciate the time you give to read this problem =DNOTE: I am using Ren'Py version v7.4.0. I tested on v7.3.5 and v7.3.2 and the error persists.