博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何看一个python的模块是否安装了
阅读量:4954 次
发布时间:2019-06-12

本文共 833 字,大约阅读时间需要 2 分钟。

pip list

pip freeze

pip show <module_name>

pip search <module_name>

 

How to know if a python module is installed or not in the system: You can do a very easy test in terminal,

$ python -c "import math" $ echo $? 0 # math module exists in system $ python -c "import numpy" Traceback (most recent call last): File "
", line 1, in
ImportError: No module named numpy $ echo $? 1 # numpy module does not exist in system

In case we do not want to unwantedly import a module in question (which would happen in a trystatement) we can make use of sys.modules to test modules that are installed and were imported before.

In the python shell issue:

>>> import sys

Then test for installed modules:

>>> 'numpy' in sys.modules True >>> 'scipy' in sys.modules False
 

转载于:https://www.cnblogs.com/andy-0212/p/10198110.html

你可能感兴趣的文章
CSS基础学习 20.CSS媒体查询
查看>>
2019春季第十一周作业
查看>>
洛谷P4591 [TJOI2018]碱基序列 【KMP + dp】
查看>>
iOS CoreData介绍和使用(以及一些注意事项)
查看>>
OS笔记047代理传值和block传值
查看>>
Android应用程序与SurfaceFlinger服务的连接过程分析
查看>>
coco2dx服务器简单例子
查看>>
Java回顾之多线程
查看>>
sqlite
查看>>
机电行业如何进行信息化建设
查看>>
Windows Azure Platform Introduction (4) Windows Azure架构
查看>>
【转】chrome developer tool 调试技巧
查看>>
mahout运行测试与kmeans算法解析
查看>>
互相给一巴掌器
查看>>
Android SDK环境变量配置
查看>>
VM10虚拟机安装图解
查看>>
9、总线
查看>>
Git 笔记 - section 1
查看>>
JZOJ 4.1 B组 俄罗斯方块
查看>>
HDU6409 没有兄弟的舞会
查看>>