Microsoft Seal - Setting up your docker on Ubuntu
If you're thinking of working with Microsoft Seal library, then get your hands dirty with a Linux build.
To setup your dev environment
docker run -it mcr.microsoft.com/dotnet/core/sdk:2.2-bionic /bin/bash
Then start to install
apt-get install update
apt-get install software-properties-common
apt-get install cmake
apt-get install git
apt-get install g++
git clone https://github.com/microsoft/SEAL.git
Build the goodies
cd native/src
cmake .
make
sudo make install
cd ../..
Don't forget the samples..... good fun :)
cd native/examples
cmake .
make
cd ../..
Comments