Set Python3.7 as Default Python Version

I’ve downloaded Python3.7 with

$ sudo apt install python3.7-dev

But when I run python --version the output is still Python 3.6.9.

I will be using greengrassv1 so I would like find out how to make 3.7 default on my Jetson Nano

Hi,

Please recreate the soft link.

For example:

$ sudo rm /usr/bin/python3
$ sudo ln -s /usr/bin/python3.7 /usr/bin/python3

Thanks.

2 Likes

Thank you!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.