我更新了python(从3.5到3.6)并注意到我为3.5安装的所有模块现在都不再可用于3.6中的导入。
当我尝试在3.6中导入PIL时,例如:
>>> import PIL
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import PIL
ModuleNotFoundError: No module named 'PIL'
>>>
如何使用我在3.5版本中导入的3.5中的模块? 我是否必须在更新python后更改某些路径或每次更新时再次安装模块?