-1

How can I configure a virtual data science environment so that data science libraries from NumFocus do not contact external servers without explicit consent?

After setting up a custom DNS I observed traffic when initializing a conda environment. I would like to avoid this for individual projects/ environments while working with licensed data.

tsttst
  • 151
  • 1
  • 9

1 Answers1

3

I think you could look at using a Docker image with an Anaconda distribution, which block the network ports unless you specifically open them with the -p option.

You could try this page for starters: https://hub.docker.com/u/continuumio

Nitin
  • 314
  • 1
  • 2