Tengo una aplicación de Termux instalada en mi teléfono Android. ¿Hay alguna herramienta de prueba de velocidad que pueda instalar y usar desde la línea de comandos? He intentado speedtest-cli
lo instaló:
pip install speedtest-cli
pip install speedtest-cli --upgrade
También tengo python
instalado.
Al tratar de usar speedtest-cli
me da error:
Traceback (most recent call last):
File "/data/data/com.termux/files/usr/lib/python3.6/site-packages/speedtest.py", line 1401, in shell
speedtest = Speedtest()
File "/data/data/com.termux/files/usr/lib/python3.6/site-packages/speedtest.py", line 743, in _init_
self.get_config()
File "/data/data/com.termux/files/usr/lib/python3.6/site-packages/speedtest.py", line 765, in get_config
raise ConfigRetrievalError(e)
speedtest.ConfigRetrievalError: The read operation timed out
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/data/data/com.termux/files/usr/bin/speedtest-cli", line 11, in <module>
sys.exit(main())
File "/data/data/com.termux/files/usr/lib/python3.6/site-packages/speedtest.py", line 1498, in main
shell()
File "/data/data/com.termux/files/usr/lib/python3.6/site-packages/speedtest.py", line 1402, in shell
except (ConfigRetrievalError, HTTP_ERRORS):
TypeError: catching classes that do not inherit from BaseException is not allowed
¿Cómo consigo una herramienta de prueba de velocidad de línea de comandos que funcione en Android y Termux?