查看python和NumPy版本和安装路径
Posted youpeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查看python和NumPy版本和安装路径相关的知识,希望对你有一定的参考价值。
记录查看Python和NumPy版本以及路径的几条命令
# 查看Python版本及路径
python -V
python -c "import sys;print(sys.executable)"
# 查看NumPy版本及路径
python -c "import numpy;print(numpy.version.version)"
python -c "import numpy;print(numpy.__version__)"
# 借助pip命令,类似的也可以查看其他用pip安装的软件的信息
pip3 show numpy
实际运行结果图:
以上是关于查看python和NumPy版本和安装路径的主要内容,如果未能解决你的问题,请参考以下文章