I installed Python 3.6 on my RPi 3B+, hoping to replace the current Python3.5.3 that came with Raspbian Stretch. I needed the new version for a robot vacuum plugin that requires >= 3.6.
Unfortunately, after the install proces, both Python versions exist on my system. I created an alias, with no luck:
$ alias python3=python3.6
So, how can I really replace Python3 and not have two versions on my system, or al least make the newer Python version the default in Raspbian?
Pierre