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 5 years have passed since last update.

pip でインストールができないときの対処方法

Last updated at Posted at 2019-12-25

(base) C:\Users\PycharmProjects\Graphics>pip install cx_Freeze

IDE PycharmのTerminalからpip installでCX_Freezeをインストールしようとしたら、
以下のようなエラーが出現するようになり、
PycharmのFile>settingsからモジュールをインストールしていました。

Traceback (most recent call last):
File "C:\Users\Anaconda3\Scripts\pip-script.py", line 10, in
sys.exit(main())
TypeError: 'module' object is not callable

でも、PycharmのTerminalからpipを使ってモジュールをインストールするほうが便利なので、そのエラーの取り方を記述しました。

コマンドは2種類だけです。
1.
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
2.python get-pip.py
以上です。

実行結果を下記に記述しておきます。
手順1.
(base) C:\Users\PycharmProjects\Pythono_Programing4_Graphics>curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1734k 100 1734k 0 0 3897k 0 --:--:-- --:--:-- --:--:-- 3897k
手順2.
(base) C:\Users\PycharmProjects\Pythono_Programing4_Graphics>python get-pip.py
Collecting pip
Uninstalling pip-19.3.1:
Successfully uninstalled pip-19.3.1
Successfully installed pip-19.3.1

pipのインストールが完了したら、
PycharmのTerminalからpipを使い、
cx_Freezeパッケージをインストールしてみる。

(base) C:\Users\PycharmProjects\Pythono_Programing4_Graphics>pip install cx_Freeze
Requirement already satisfied: cx_Freeze in c:\users\appdata\roaming\python\python37\site-packages (6.0)

以上。
おめでとうございました。

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?