The Tchebycheff Approach
Tchebycheff Approach
This very brief blog post will document how to configure Anaconda’s .condarc
file to be able download packages from an external server in a Corporate environment. I’m mainly writing this so I don’t have to Google it again if I forget.
To begin, you first have to create the .condarc
file. Open an Anaconda prompt and type:
conda config --add channels conda-forge
The file will then be created in the C:\Users\<username>\
directory (on Windows), and you can then open and edit it in your text editor. You simply have to add your proxy information (for HTTP and HTTPS) to the file, and everything should be set.
channels:
- conda-forge
- defaults
proxy_servers:
http: http://user:pass@hostname:port
https: https://user:pass@hostname:port
Tchebycheff Approach
not financial advice, just a crypto degen thinking out loud
Thoughts I’ve had after reading the news about Apple’s new policies that support “Expanded Protections for Children”.
Using a Convolutional Neural Net to Swish the Kannada MNIST Challenge
Using Anaconda Behind a Firewall or Proxy
Recently I learned of a cool Python package calledpandas_profilingthat serves as an extension of the pandas.DataFrame.describe() function in the pandas modul...
This post is simply a collection of some of my favorite webcomics that my synthetic intelligence, nightfall, created during the last week and a half from Se...
A notebook detailing how to work through the Open AI taxi reinforcement learning problem written in Python 3. Source for environment documentation. import g...