Liberate.FHE
DESILO
v0.9.1
v0.9.1
  • Welcome to Liberate.FHE!
  • 🌟Getting Started
    • Quick Start
    • Installation
  • 🆘Tutorials
    • Homomorphic Statistics
    • Multiparty
  • ❓How To
    • Configure
      • GPU & CUDA
      • Python
      • Liberate
    • Use CKKS
      • Encrypt, Decrypt
      • Add, Sub
      • Multiplication
      • Serialize and Deserialize
      • GPU & CPU
      • Liberate with WASM
  • 🎊API References
    • Docs
  • 📜etc
    • License
Powered by GitBook

COPYRIGHT Ⓒ 2023. DESILO INC. ALL RIGHTS RESERVED.

On this page
  • Prerequisite Package
  • GPU
  • CUDA
  • Python
  • Liberate.FHE
  • Step 1: Clone the github repository
  • Step 2: Install dependencies
  • Step 3: Run CUDA build script
  • Step 4: Install Liberate.FHE library

Was this helpful?

Export as PDF
  1. How To
  2. Configure

Liberate

PreviousPythonNextUse CKKS

Was this helpful?

Prerequisite Package

GPU

Please refer to the respective page for instructions on how to install a .

CUDA

Please refer to the respective page for instructions on how to install a .

Python

Please refer to the respective page for instructions on how to install a .

Liberate.FHE

Step 1: Clone the github repository

Clone the of Liberate.FHE to obtain the latest source code.

git clone https://github.com/Desilo/liberate-fhe.git

Step 2: Install dependencies

Use poetry to install the project dependencies. Open the terminal and run the command poetry install. This will automatically install all the required packages for the Liberate.FHE.

poetry install

Step 3: Run CUDA build script

To build CUDA by running the setup.py file. In the terminal, run the command poetry run python setup.py install. This command will build CUDA files.

python setup.py install
# poetry run python setup.py install

Step 4: Install Liberate.FHE library

Install the Liberate.FHE by running the command poetry run python -m pip install .in the terminal. This will install the Liberate.FHE library into your system.

pip install .
# poetry run python -m pip install .

❓
Python
Github repository
GPU
CUDA