diff --git a/README.md b/README.md index fd93396..868beb2 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ This is a python binding for the Microsoft SEAL library. # Test cp seal.*.so examples + cd examples python3 4_bgv_basics.py ``` @@ -66,16 +67,18 @@ This is a python binding for the Microsoft SEAL library. Visual Studio 2019 or newer is required. x64 support only! And use the **x64 Native Tools Command Prompt for VS** command prompt to configure and build the Microsoft SEAL library. It's usually can be found in your Start Menu. ```shell - # Same as above # Run in "x64 Native Tools Command Prompt for VS" command prompt cmake -S . -B build -G Ninja -DSEAL_USE_MSGSL=OFF -DSEAL_USE_ZLIB=OFF cmake --build build + # Build pip install numpy pybind11 - python setup.py build_ext -i - cp *.so examples + # Test + cp seal.*.pyd examples + cd examples + python 4_bgv_basics.py ``` Microsoft SEAL official [docs](https://github.com/microsoft/SEAL#building-microsoft-seal-manually).