This page here has been created for the latest stable release of Salvus. You have chosen to view the documentation for another Salvus version. Please be aware there might be some small differences you have to account for.
Internet access is required for a number of things when installing and running Salvus. Many corporate networks demand the use of a proxy server.
Details for the various programs.
conda
: https://docs.anaconda.com/anaconda/user-guide/tasks/proxy/pip
: http://leifengblog.net/blog/how-to-use-pip-behind-a-proxy/curl
: https://curl.haxx.se/libcurl/c/CURLOPT_PROXY.htmlcurl
.curl
.An easy way to test the settings is to run for example:
https_proxy=https://username:[email protected]:8080 curl https://example.com
This command will set the https_proxy
only for this execution and use curl
to download an HTTPS website. If this does not error the environment variable setting should be correct.
You can always check if an environment variable is set by
echo $variable_name
export variable_name=variable_value