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

proxy環境でWindowsにpipでJupiter Notebookをインストールする

Posted at

pipでJupiter Notebookをインストールする手順

この手順をproxy前提で実行する必要があり
https://qiita.com/adshidtadka/items/cb34d355a41a4a14ff68

要するに、git bashで以下をたたくだけでとても簡単だが、proxy前提に直す必要があり

$pip install -U pip
$pip install jupyter
$jupyter notebook

proxy前提の手順

https://qiita.com/samunohito/items/40a03e1464899225e698
git bashなのでsetではなくexportにする

export HTTP_PROXY=http://user:pass@fooooo.proxy.local:8080
export HTTPS_PROXY=http://user:pass@fooooo.proxy.local:8080

権限エラーがなぜかでたので--userオプションを

$pip install -U pip --user

所感

proxyにまだ消耗しているの?と言われそうだが、まぁ仕方なし。

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?