Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 685 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 685 Bytes

Homomorphic-Encryption

Setup

wget https://raw.githubusercontent.com/DnyyGzd/Homomorphic-Encryption/main/setup.bash
bash setup.bash

Append the following content to the end of ~/.bashrc (replace path/to/) and reboot.

export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"
export PYTHONPATH="$PYTHONPATH:path/to/openfhe-python/build"

VSCode Pylance

Create a directory named .vscode within the project directory and generate a settings.json file containing the following content (replace path/to/).

{
    "python.analysis.extraPaths": [
        "path/to/stubs"
    ],
    "python.autoComplete.extraPaths": [
        "path/to/stubs"
    ]
}