Hi,
I got time to try.
Some success and some not:
1/ there are more modules in the apps browser than I was aware of! originally I only looked for "python3.9*", I however realised that modules donot necessarily need to be python3.9 specific. Still however... none of the found modules had the version I was looking for.
No problem... try to install using the guidance of Juanito....
2/ I used the method describe by Juanito, YES! worked for many:
I was able to install:
beautifulsoup4, v4.11.1
pytz, v2022.2.1
requests, v2.28.1
paho_mqtt, v1.6.1
==> these went OK!
However got some problems:
A/ beautifulsoup4 wants "soupsieve"
- I downloaded and tried to build but "it does NOT have a setup.py file" --> I'm stuck
B/ python_dateutil, v2.8.2 wants to have "wheel" > ok installed that, but still not working:
tc@hp510:/krubo/work/python/python-dateutil-2.8.2$ python3.9 setup.py build
/usr/local/bin/python3.9: No module named pip.__main__; 'pip' is a package and cannot be directly executed
Traceback (most recent call last):
File "/usr/local/lib/python3.9/site-packages/setuptools/installer.py", line 75, in fetch_build_egg
subprocess.check_call(cmd)
File "/usr/local/lib/python3.9/subprocess.py", line 373, in check_call
raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['/usr/local/bin/python3.9', '-m', 'pip', '--disable-pip-version-check', 'wheel', '--no-deps', '-w', '/tmp/tmpa5_rstqz', '--quiet', 'setuptools_scm']' returned non-zero exit status 1.
It wants to use pip... and actually I doNOT want to use pip because that installs things under ~/.local and that is not what I want.
So... stuck....
any guidance forwards???