pandas 如何找到 Seaborn 版本
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/52122651/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-14 05:59:27 来源:igfitidea点击:
How to find Seaborn version
提问by Biju Oommen
I have installed Seaborn in my machine. The Seaborn is working fine. I need to find the version of Seaborn installed. What command do I use to find the version of the Seaborn?
我已经在我的机器上安装了 Seaborn。Seaborn 工作正常。我需要找到安装的 Seaborn 版本。我使用什么命令来查找 Seaborn 的版本?
回答by piRSquared
Use __version__
用 __version__
import seaborn as sns
sns.__version__
'0.7.1'