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.

Ubuntu18.04+Anaconda 環境のプロキシ設定メモ

Last updated at Posted at 2019-06-08

#目的
プロキシ設定でよく躓くのでメモ

{proxy.address.hoge}と{port number}のところは適宜変えてください
##apt

cd #ホームディレクトリに戻る
cd /etc
cd apt
vim apt.conf

apt.confに

Acquire::ftp::proxy "http://{proxy.address.hoge}:{port number}/";
Acquire::http::proxy "http://{proxy.address.hoge}:{port number}/";
Acquire::https::proxy "http://{proxy.address.hoge}:{port number}/";

を書き込み、保存する(そのままだとRandomlyなので:wqで保存できない。自分は:w !sudo tee %で強制書き込みしてる)

##git
CUIから直接

git config --global http.proxy http://{proxy.address.hoge}:{port number}
git config --global https.proxy http://{proxy.address.hoge}:{port number}

を書いて実行する。

##anaconda
Anaconda がインストールされているフォルダまで行く(何も設定してない場合は”cd ”で行くホームディレクトリにある)
cd anaconda3
vim .condarc

テキストエディタが動作する(いじってない限り何も書かれていない)ので

proxy_servers:
    http: http://{proxy.address.hoge}:{port number}
    https: http://{proxy.address.hoge}:{port number}

を書いてescキー→:wqで保存して終了

##環境変数に追加したい
mecabのmecab-ipadic-neologd辞書をインストールする時に環境変数にプロキシを追加しないと最後まで行かない
CUIから

export http_proxy=http://{proxy.address.hoge}:{port number}
export https_proxy=http://{proxy.address.hoge}:{port number}

シェルを閉じると消えるっぽい?
打ったかどうかわからなくなったら

export -p

で環境変数一覧が出るのでその中になかったらまたexport http_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?