web-dev-qa-db-ja.com

Python freetype、pngパッケージのWindows 7でのmatplotlibインストールの問題

Windows 7でPython 2.7を使用します。インストールとエラーメッセージに使用しているコマンドは次のとおりです。

C:\Python27\Scripts>pip install matplotlib
Collecting matplotlib
  Downloading matplotlib-1.5.2.tar.gz (51.6MB)
    100% |################################| 51.6MB 19kB/s
    Complete output from command python setup.py Egg_info:
    ============================================================================

    Edit setup.cfg to change the build options

    BUILDING MATPLOTLIB
                matplotlib: yes [1.5.2]
                    python: yes [2.7.11 (v2.7.11:6d1b6a68f775, Dec  5 2015,
                            20:40:30) [MSC v.1500 64 bit (AMD64)]]
                  platform: yes [win32]

    REQUIRED DEPENDENCIES AND EXTENSIONS
                     numpy: yes [version 1.11.1]
                  dateutil: yes [dateutil was not found. It is required for date

                            axis support. pip/easy_install may attempt to
                            install it after matplotlib.]
                      pytz: yes [pytz was not found. pip will attempt to install

                            it after matplotlib.]
                    cycler: yes [cycler was not found. pip will attempt to
                            install it after matplotlib.]
                   tornado: yes [tornado was not found. It is required for the
                            WebAgg backend. pip/easy_install may attempt to
                            install it after matplotlib.]
                 pyparsing: yes [pyparsing was not found. It is required for
                            mathtext support. pip/easy_install may attempt to
                            install it after matplotlib.]
                    libagg: yes [pkg-config information for 'libagg' could not
                            be found. Using local copy.]
                  freetype: no  [The C/C++ header for freetype (ft2build.h)
                            could not be found.  You may need to install the
                            development package.]
                       png: no  [The C/C++ header for png (png.h) could not be
                            found.  You may need to install the development
                            package.]
                     qhull: yes [pkg-config information for 'qhull' could not be

                            found. Using local copy.]

    OPTIONAL SUBPACKAGES
               sample_data: yes [installing]
                  toolkits: yes [installing]
                     tests: yes [nose 0.11.1 or later is required to run the
                            matplotlib test suite. Please install it with pip or

                            your preferred tool to run the test suite / mock is
                            required to run the matplotlib test suite. Please
                            install it with pip or your preferred tool to run
                            the test suite]
            toolkits_tests: yes [nose 0.11.1 or later is required to run the
                            matplotlib test suite. Please install it with pip or

                            your preferred tool to run the test suite / mock is
                            required to run the matplotlib test suite. Please
                            install it with pip or your preferred tool to run
                            the test suite]

    OPTIONAL BACKEND EXTENSIONS
                    macosx: no  [Mac OS-X only]
                    qt5agg: no  [PyQt5 not found]
                    qt4agg: no  [PySide not found; PyQt4 not found]
                   gtk3agg: no  [Requires pygobject to be installed.]
                 gtk3cairo: no  [Requires cairocffi or pycairo to be installed.]

                    gtkagg: no  [Requires pygtk]
                     tkagg: yes [installing; run-time loading from Python Tcl /
                            Tk]
                     wxagg: no  [requires wxPython]
                       gtk: no  [Requires pygtk]
                       agg: yes [installing]
                     cairo: no  [cairocffi or pycairo not found]
                 windowing: yes [installing]

    OPTIONAL LATEX DEPENDENCIES
                    dvipng: no
               ghostscript: no
                     latex: no
                   pdftops: no

    OPTIONAL PACKAGE DATA
                      dlls: no  [skipping due to configuration]

    ============================================================================

                            * The following required packages can not be built:
                            * freetype, png

    ----------------------------------------
Command "python setup.py Egg_info" failed with error code 1 in c:\users\foo\a
ppdata\local\temp\pip-build-zxfsow\matplotlib\
17
Lin Ma

http://www.lfd.uci.edu/~gohlke/pythonlibs/

上記の場所からmatplotlibを取得します。 python(2.x/3.x)およびbit(32/64)バージョンに基づいて正しいパッケージを選択します。

32-bit 2.7: matplotlib-1.5.2-cp27-cp27m-win32.whl
64-bit 2.7: matplotlib-1.5.2-cp27-cp27m-win_AMD64.whl

途中で問題に直面した場合は、以下のリンクを参照してください: https://stackoverflow.com/a/38618044/5334188

6
be_good_do_good

バージョン1.5.1を使用して解決しました

pip install matplotlib==1.5.1

バージョン1.5.2インストーラーが壊れているようです。

11
Doron Gombosh

ご覧のとおり、pngおよびfreetypeモジュールがありません。それらを個別にインストールする必要があります。

以下を試してください:

> pip install freetype-py
> pip install pypng
> pip install matplotlib
10
Ryan B.

私はまったく同じ問題を抱えていました。

私のピップは古いv7だったようです。 「アップグレード」ボタンでv9にアップグレードしました。その後、matplotlibを再度インストールしようとしましたが、今回は成功しました。

多分これは役立ちます

4
E.Mich

私はあなたと同じ問題に遭遇しました、そしてここに私の解決策があります

python 3.6が最新のpipに統合されているため、pipでpython 3.5.2をインストールしましたが、pipをアップグレードしないでください。この方法でmatplotlibをインストールします。

可能な解決策を提供できることを願っています

2
Mark

私は次のようにWİndows10で同じ問題を解決しました。

1- win32またはwin64 python3.7用の以下のファイルをダウンロードします。

matplotlib-2.2.2-cp27-cp37m-win32.whl

または

matplotlib-2.2.2-cp27-cp37m-win_AMD64.whl

https://www.lfd.uci.edu/~gohlke/pythonlibs/ から

2- cmdコンソールで、ダウンロードしたファイルをPythonで実行します。

.\Downloads> python -m pip install matplotlib-2.2.2-cp37-cp37m-win_AMD64.whl

あなたはmatplolibを試すことができます

1