[解決済み] Ubuntuで`pip install`を実行すると、エラー 'The following required packages can't be built.が発生します。* freetype'
2022-05-06 10:49:57
質問
を行う場合
pip install -r requirements.txt
をインストールする段階で、次のようなエラーが発生します。
matplotlib
:
REQUIRED DEPENDENCIES AND EXTENSIONS
numpy: yes [not found. pip may install it below.]
dateutil: yes [dateutil was not found. It is required for date
axis support. pip/easy_install may 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.]
pycxx: yes [Couldn't import. Using local copy.]
libagg: yes [pkg-config information for 'libagg' could not
be found. Using local copy.]
freetype: no [pkg-config information for 'freetype2' could
not be found.]
...
The following required packages can not be built:
* freetype
を使用する必要があります。
pip install -r requirements.txt
もインストールされますか?Ubuntu 12.04では、どのようにfreetypeをインストールすればよいのでしょうか?
matplotlib
?
解決方法は?
いいえ。
pip
は、システムレベルの依存関係をインストールしません。これは
pip
は RPM をインストールしません (
Redhatベースのシステム
) または DEB(s) (
Debianベースのシステム
).
システムの依存関係をインストールするには、お使いのシステムに応じて、以下の方法のいずれかを使用する必要があります。
Ubuntu/Debianの場合。
apt-get install libfreetype6-dev
Ubuntu/Debianベースのシステムでパッケージを検索する場合。
apt-cache search <string>
たとえば
apt-cache search freetype | grep dev
Redhat/CentOS/Fedora。
yum -y install freetype-devel
Redhat/CentOS/Fedora ベースのシステムでパッケージを検索する場合。
yum search <string>
たとえば
yum search freetype | grep devel
Mac OS X。 ( を経て 自作 )
brew install freetype
Mac OS Xベースのシステムでパッケージを検索する場合。
brew search <string>
たとえば
brew search freetype
関連
-
Pythonの非常に便利な2つのデコレーターを解説
-
Python Decorator 練習問題
-
PicgoのイメージベッドツールをPythonで実装する
-
Pythonによるjieba分割ライブラリ
-
Pythonコードの可読性を向上させるツール「pycodestyle」の使い方を詳しく解説します
-
任意波形を生成してtxtで保存するためのPython実装
-
[解決済み】ImportError: sklearn.cross_validation という名前のモジュールがない。
-
[解決済み】Pythonスクリプトで「Expected 2D array, got 1D array instead: 」というエラーが発生?
-
[解決済み] TypeError: 'DataFrame' オブジェクトは呼び出し可能ではない
-
[解決済み] ローカルディレクトリからrequirements.txtファイルに従ってpipを使用してパッケージをインストールするにはどうすればよいですか?
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
PyQt5はユーザーログインGUIインターフェースとログイン後のジャンプを実装しています。
-
パッケージングツールPyinstallerの使用と落とし穴の回避
-
[解決済み】DataFrameのコンストラクタが正しく呼び出されない!エラー
-
[解決済み] _tkinter.TclError: 表示名がなく、$DISPLAY環境変数もない。
-
[解決済み】numpyの配列連結。"ValueError:すべての入力配列は同じ次元数でなければならない"
-
[解決済み] builtins.TypeError: strでなければならない、bytesではない
-
[解決済み】Pythonでgoogle APIのJSONコードを読み込むとエラーになる件
-
[解決済み】 AttributeError("'str' object has no attribute 'read'")
-
[解決済み】LogisticRegression: Pythonでsklearnを使用して、未知のラベルタイプ: '連続'を使用しています。
-
[解決済み】Flaskのテンプレートが見つからない【重複あり