Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Sometimes you might need access to the internet when on a private network. The following is some examples on using the proxy environment variables.

# bash
export http_proxy=http://calamar.uwaterloo.ca:3128
export https_proxy=http://calamar.uwaterloo.ca:3128
export HTTP_PROXY=http://calamar.uwaterloo.ca:3128
export HTTPS_PROXY=http://calamar.uwaterloo.ca:3128

# csh
setenv http_proxy http://calamar.uwaterloo.ca:3128
setenv https_proxy http://calamar.uwaterloo.ca:3128
setenv HTTP_PROXY http://calamar.uwaterloo.ca:3128
setenv HTTPS_PROXY http://calamar.uwaterloo.ca:3128

# test
wget https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh
curl https://repo.anaconda.com/miniconda/Miniconda3-py39_4.10.3-Linux-x86_64.sh > Miniconda3.sh
  • No labels