1
5

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

proxy環境下でpythonのpipを使用する

Posted at

環境

  • OS:windows10

背景

proxy環境下ではpipを使用したインストールが上手く行かないケースに遭遇するかと思います。
これまでは、ネットワークを切り替えたりして煩わしい思いをしてきたかと思いますが、
環境変数にproxyの設定情報を登録することで、proxy環境下でもインストール可能になります。

手順

pipを使用してライブラリをインストールする際に、コマンドプロンプトにて下記コマンドを実行して環境変数を登録します。
システムの詳細設定から直接環境変数を登録してもOKです。

set https_proxy=http://<user>:<pass>@<host>:<port>
pip install hogehoge
  • "https_proxy"です(私の場合、http_proxyでは上手くいきませんでした)
  • <user>もしくは<pass>に@が含まれている場合、%40でエスケープしてください
    • 例)ユーザーにメールアドレスを使用している場合
      • xxx@jp ⇒ xxx%40jp
1
5
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
1
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?