I need to use python 3.6 for a project and in the ssh when I typed
python3 --version
#Python 3.6.3
but in the jupyter notebook i opened, it is still
import sys
print(sys.version)
3.5.3 (default, Sep 27 2018, 17:25:39)
[GCC 6.3.0 20170516]
How can I change it to python 3.6?
I can see that when I opened jupyter notebook, python3.6 is in the directory:
I know there is a similar question in stackoverflow but is not answered.