0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

pycryptoを入れようとするとRuntimeError: autoconf errorが出る

Last updated at Posted at 2021-05-02

自分用メモ

発生したこと

pip install pycrypto

を実行すると

raise RuntimeError("autoconf error")

RuntimeError: autoconf error

と、他にも色々エラーが出て入れられない。

環境

AWS Linux

解決策

Step1. gccをインストール

pycryptoをインストールするにはgccが必要なようなので、以下のコマンドでインストール

sudo yum install gcc

Step2. python3-develをインストール

sudo yum install python3-devel

再び

pip install pycrypto

で行けた。

参考

他にも

pip install python-dev-tools

もしたのでもしかしたらいるかもしれない(問題の切り分けができていません:bow_tone5:

お世話になった先人の知識たち

https://techacademy.jp/magazine/23338
http://y0m0r.hateblo.jp/entry/20130707/1373192687

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?