I updated python (from 3.5 to 3.6) and notice that all modules i installed for 3.5 are now no more available for importing in 3.6.
When i try to import PIL in 3.6 for example there is:
>>> import PIL
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import PIL
ModuleNotFoundError: No module named 'PIL'
>>>
How can i use modules in 3.5 which i imported while in version 3.5? Do i have to change some path after updating python or install the modules again every time i update?