This question should be relatively quick and easy. I just am trying to find out which version of Python's math
and cmath
packages I have.
Unfortunately, I did not install them using pip
. I have already reviewed this stack article which was helpful (because I did not know pip freeze
before). However, both packages are not on the list.
I've tried google and looking around a bit, but to no avail. I have tried the following in the interpreter:
import math
print math.__version # error
print math.version # error
I have also tried to use python's help
command and breeze through the documentation, but once again, couldn't find anything about how to detect which version I have installed.
I'm not exactly sure what else to try. Any thoughts? Thanks again for your time!