How do I check which version of NumPy I'm using?

后端 未结 16 951
深忆病人
深忆病人 2020-12-07 08:48

How can I check which version of NumPy I\'m using?

(FYI this question has been edited because both the question and answer are not platform specific.)

16条回答
  •  半阙折子戏
    2020-12-07 09:12

    For Python 3.X print syntax:

    python -c "import numpy; print (numpy.version.version)"
    

    Or

    python -c "import numpy; print(numpy.__version__)"
    

提交回复
热议问题