LoginSignup
4
1

More than 5 years have passed since last update.

Pythonのpipをupgradeしたら "Fatal error in launcher: Unable to create process using..."と言われてしまう

Last updated at Posted at 2018-04-18

WindowsにPythonをインストールしてpip動かすと

python -m pip install --upgrade pip

と言われるのでそのまま実行すると

C:\WINDOWS\system32>pip
Fatal error in launcher: Unable to create process using '""c:\program files\python36\python.exe"  "C:\Program Files\Python36\Scripts\pip.exe" '

となって困った。python -m pipでは正常に実行できる。

いろいろ調べてまわって動かなかったが、Stack Overflowの回答に従ったら治ったのでメモ。

python -m pip uninstall pip
easy_install pip

要するにpipはUpgradeしないでeasy_installで入れればよいらしい。
Pythonに詳しい方に解説してもらえるとうれしいです。

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