I was trying to add another module path. Let's say I want to append path 'd'
$ python3
>>> import sys
>>> sys.path
['a','b','c']
>>> sys.path.append('d')
>>> sys.path
['a','b','c','d']
>>> exit()
$python3
>>> import sys
>>> sys.path
['a','b','c']
The path I added is gone when I restart python. I would like to set the path 'd' as default.