Problem to load open3d.ml inside dynamo

Hi
i try to used open3d.ml.tf packdge inside dynamo

but i fail

import sys
import clr
import System

clr.AddReference('ProtoGeometry')
from Autodesk.DesignScript.Geometry import *
clr.AddReference('GeometryColor')
from Modifiers import GeometryColor
clr.AddReference('DSCoreNodes')
from DSCore import Color

clr.AddReference('System.Windows.Forms')
import System.Windows.Forms
from System.Windows.Forms import MessageBox, MessageBoxButtons

dirAppLoc = System.Environment.GetFolderPath(System.Environment.SpecialFolder.LocalApplicationData) 
sys.path.append(dirAppLoc + r'\python-3.8.3-embed-amd64\Lib\site-packages')
datacsv = dirAppLoc + "\\dataTensorFlow.csv"

# force to reload module
if "tensorflow" in sys.modules:
    del sys.modules["tensorflow"]

import numpy as np
import tensorflow as tf
from tensorflow import keras
from tensorflow.keras import layers
from tensorflow.python.client import device_lib
import open3d.ml.tf as ml3d

# Code unterhalb dieser Linie platzieren

# Weisen Sie Ihre Ausgabe der OUT-Variablen zu.
OUT = sys.path,sys.version

image

this is the erorr

Warnung:Exception : Open3D was not built with Tensorflow support! ['  File "<string>", line 29, in <module>\n', '  File "C:\\Users\\mohareb\\AppData\\Local\\python-3.8.3-embed-amd64\\lib\\site-packages\\open3d\\ml\\tf\\__init__.py", line 32, in <module>\n    raise Exception(\'Open3D was not built with Tensorflow support!\')\n']

image

Hi,
maybe this link can help you
https://gitlab.ip.uca.fr/issoB/stage-persyst-reconstruction-3d/-/blob/99e22bcfb4fbbffdb45c0672e7b67c146a3b70aa/Open3D-ML-master/README.md

# To install a compatible version of TensorFlow
pip install -r requirements-tensorflow.txt
1 Like

the problem that Opened-ML compatible only with Linux or OS.
Is any way to setup dynamo and Revit 2022 into Linux?