(Win10)在Python中安装图像处理库PIL、numpy等遇到的问题及解决方案

在命令行cmd中使用pip install报错:pip is configured with locations that require TLS/SSL

解决方法:在Anaconda Prompt中使用pip install即可。

查看所安装库的版本,输入命令:import PIL; PIL.version; 报错AttributeError: module ‘PIL’ has no attribute ‘version

解决方法:version前后均改为两个下划线"_",即PIL.version

>>> import PIL,numpy,skimage
>>> PIL.__version__
'7.2.0'
>>> numpy.__version__
'1.23.2'
>>> print(skimage.__version__)
0.16.2

因为有些库是已安装的,那么如何确保所有库为最新版本呢?

解决方法:输入命令python -m pip install --upgrade numpy,如果所安装库不是最新的会卸载旧版本安装最新版本,如果已经是最新的,则会提示Requirement already up-to-date;(命令中python -m是可选的,如果电脑安装了几个版本的 Python 解释器,python -m pip 会选择当前使用的 Python 版本)
参考:https://blog.csdn.net/applebear1123/article/details/119896869

你可能感兴趣的:(python,numpy,图像处理)