我使用OX10.11.3并在终端输入python时得到:
$ python
Python 2.7.11 (v2.7.11:6d1b6a68f775, Dec 5 2015, 12:54:16)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
所以matplotlib版本是:
print matplotlib.__version__
1.5.1
然而在pycharm终端,我看到:
Python 2.6.9 (unknown, Oct 23 2015, 18:05:10)
[GCC 4.2.1 Compatible Apple LLVM 7.0.0 (clang-700.0.59.5)] on darwin
所以matplotlib版本是:
print matplotlib.__version__
1.1.1
我需要使用最新版本中存在的matplotlib的一些功能,但我不知道如何更新它。我有蟒蛇的这些差异是什么?
答案 0 :(得分:1)
您需要在pycharm中更改项目解释器。 pycharm文档非常全面https://www.jetbrains.com/pycharm/help/configuring-python-interpreter-for-a-project.html
还考虑将来使用virtualenv这样的东西,因为它有助于避免像https://virtualenv.readthedocs.org/这样的问题