2
1

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.

pip install ができないときは、python -m pip install が無難

Posted at

以下、自分の場合にうまくいったことなので、100%内容に信頼性があるか分かりませんが、ご参考まで。

パッケージをインストールしようと、

pip install XXXX

とすると、
こんなエラーが出る。

pyenv: pip: command not found
The `pip' command exists in these Python versions:

こんな場合は、以下でインストールするのが無難

python -m pip install XXXX

以上です。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?