Ubuntu 18.04, 16.04 funkade inte pga fel dependencies och att det vart fel när man skulle installera dem (python kunde inte hitta ssl modulen) -nyinstallerad VM -patchade: sudo apt -y update && sudo apt -y upgrade ---installerade vbox guest additions, ha inte med detta, alla använder inte virtualbox -installerade docker https://docs.docker.com/v17.12/install/linux/docker-ce/ubuntu/ 1. sudo apt install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common 2. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 3. sudo add-apt-repository \ "deb [arch=amd64] https://download.docker.com/linux/ubuntu \ $(lsb_release -cs) \s stable" 4. sudo apt update && sudo apt install docker-ce -la till min användare i docker gruppen - IMPORTANT You don't want to run Azure Data Studio as root, but you need root privilages to run docker commands. However, if you add your user to the group "docker", you can run docker commands without using sudo or logging in as root. usermod -aG docker $USER Restart your machine after adding your user to the docker group. Verify with the command "groups" -installerade azure data studio https://docs.microsoft.com/en-us/sql/azure-data-studio/download?view=sql-server-ver15 install the .deb file Navigate to the Downloads directory: cd ~/Downloads/ Make sure the file is there: ls This is what you should see: sudo dpkg -i ./azuredatastudio-linux-.deb -deploy the container 1. start azure data studio by typing azuredatastudio in the terminal 2. Ctrl + Shift + D, click the three dots at the top to the right of "CONNECTIONS", click "Deploy SQL Server" 3. Choose verion of sql server, 2017 or 2019 4. Enter conatiner name, SA password and port 5. Choose "New Python installation", then press "Install" 6. Python installing 7. Press yes when prompted for if you want to upgrade certain python packages ---All done You should now be able to run all the python commands in the notebook by pressing the button in the top left of the boxes. Enjoy!