Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.02 KB

extra-setup-instructions.md

File metadata and controls

25 lines (19 loc) · 1.02 KB

Local Docker Container

git clone git@github.com:data-derp/exercise-data-security.git
docker run  -p 8888:8888 -v $(pwd):/app -it ghcr.io/data-derp/dev-container:master bash

In the Docker container

cd /app
pip install -r requirements.txt
jupyter notebook --ip 0.0.0.0 --no-browser --allow-root

Then navigate to the localhost address (don't forget the token) that the juypter console spins up.

Click on Security and Privacy in Data Engineering.ipynb or Security and Privacy in Data Engineering - Spark Version.ipynb

Local Machine

Please utilize the included requirements.txt to install your requirements using pip (you can also do so in conda. The notebooks have only been tested with Python 3. 🙌🏻

pip install -r requirements.txt

It is recommended that you use virtualenv or conda environments when running and installing Python packages on your machine!