You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Ubuntu, openfhe-python can be installed using pip. All available releases are listed at [Python Package Index OpenFHE Releases](https://pypi.org/manage/project/openfhe/releases/). Find the release for your version of Ubuntu and run
19
+
20
+
```
21
+
pip install openfhe==<openfhe_package_version>
22
+
```
23
+
24
+
Once installed, any python example at https://github.com/openfheorg/openfhe-python/tree/main/examples can be executed.
25
+
26
+
Note that Ubuntu LTS 20.04, 22.04, and 24.04 are currently supported. `pip uninstal` can be used to uninstall the openfhe package.
27
+
15
28
## Running from Docker
16
29
17
30
Please see [Instructions for the Docker setup](docker/README.md)
@@ -22,7 +35,7 @@ Please see [Instructions for the Docker setup](docker/README.md)
22
35
23
36
Before building, make sure you have the following dependencies installed:
24
37
25
-
-[OpenFHE 1.1.3+](https://github.com/openfheorg/openfhe-development) by following the instructions in [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html)
38
+
-[OpenFHE 1.3.0+](https://github.com/openfheorg/openfhe-development) by following the instructions in [OpenFHE Documentation](https://openfhe-development.readthedocs.io/en/latest/sphinx_rsts/intro/installation/installation.html)
Copy file name to clipboardExpand all lines: examples/pke/advanced-real-numbers-128.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -383,7 +383,7 @@ def main():
383
383
fast_rotation_demo1()
384
384
fast_rotation_demo2()
385
385
else:
386
-
print("This demo only runs for 128-bit CKKS.\nIf you want to test it please reinstall the OpenFHE C++ with the flag -DNATIVE_INT=128, then reinstall OpenFHE-Python.")
386
+
print("This demo only runs for 128-bit CKKS.\nIf you want to test it please reinstall the OpenFHE C++ with the flag -DNATIVE_SIZE=128, then reinstall OpenFHE-Python.")
0 commit comments