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?

macでpipをインストール

Posted at

webスクレイピングをしたいのでpipをインストールする。
pythonのversion

$ python3 --version
Python 3.8.6

pipをダウンロードする。

$ sudo easy_install pip 
sudo: easy_install: command not found

ダウンロードできない(泣)。

対処

参考

「get-pip.py」は事前にダウンロードしていたのでその後の作業をする。

$ python3 get-pip.py
...
Successfully installed pip-24.0 wheel-0.43.0

インストールに成功する。

$ which pip
/Library/Frameworks/Python.framework/Versions/3.8/bin/pip

pipがの場所を確認できたら終了!

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?