LoginSignup
11
8

More than 5 years have passed since last update.

Fatal error in launcher: Unable to create process using '"'でお困りのあなたへ

Posted at

Python × eclipse環境を立ち上げるときにpipコマンドが通らずハマったのでメモ。

現象

pipへパスを通したのになぜかアップデートコマンドが通らない。

実行時エラー
c:\>pip install -U pip

Fatal error in launcher: Unable to create process using '"'

解決方法

python経由でpipモジュールを呼び出すと通る。

実行時エラー
c:\>python -m pip install -U pip

pipを一度アップデートしてからは問題なく直接呼び出せるようになったので、特定のpipバージョンでおこる現象かも。詳細は知らない。

11
8
1

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