This repository contains my notes and projects from Udacity's DEND.
It uses Anaconda and Jupyter Notebooks and was run on WSL.
The Environment has been packaged in dend.yml
.
To recreate:
$ conda env create -f <environment-name>.yml
To update dependencies:
$ conda env update -f <environment-name>.yml --prune
The following might be needed depending on the Notebook or Script that you are executing.
Steps might differ on your system but the gist is to create the following:
- Database named
studentdb
- User named
student
with passwordstudent
$ sudo apt update
$ sudo apt install postgresql postgresql-contrib
$ sudo adduser student
$ sudo service postgresql start
$ sudo -u postgres psql -c "SELECT version();"
And then change the password for student in the db.
I had to do some tricks to get Cassandra running on WSL but it is entirely possible, it might take a while to start.