14
8

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 1 year has passed since last update.

Ubuntuでpyenvがmake: *** [Makefile:1280: install] Error 1でインストールできない問題

Posted at

エラー

subprocess.CalledProcessError: Command '['/tmp/python-build.20220718055011.16571/Python-3.10.4/python', '-W', 'ignore::DeprecationWarning', '-c', '\nimport runpy\nimport sys\nsys.path = [\'/tmp/tmpbf3uxb3u/setuptools-58.1.0-py3-none-any.whl\', \'/tmp/tmpbf3uxb3u/pip-22.0.4-py3-none-any.whl\'] + sys.path\nsys.argv[1:] = [\'install\', \'--no-cache-dir\', \'--no-index\', \'--find-links\', \'/tmp/tmpbf3uxb3u\', \'--root\', \'/\', \'--upgrade\', \'setuptools\', \'pip\']\nrunpy.run_module("pip", run_name="__main__", alter_sys=True)\n']' returned non-zero exit status 1.
make: *** [Makefile:1280: install] Error 1

こんなエラーが出てインストールに失敗してしまいます。

どうやら依存関係がまだ足りないみたいです。

現状

sudo apt install update
sudo apt install upgrade
sudo apt install build-essential

は実行した状態です。

プラスで

sudo apt install libssl-dev libffi-dev libncurses5-dev zlib1g zlib1g-dev libreadline-dev libbz2-dev libsqlite3-dev make gcc

これらもインストールしなくてはいけなかった。
これらはpyenvの依存関係です。
既に入っているのもあると思いますがとりあえずインストールしておきましょう。

こちらの記事を参考に解決したのですが、意外と辿り着けなかったので記事にしました。

お役に立てれば幸いです。

14
8
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
14
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?