Different Python interpreter and GDAL in Dynamo

Hey community,

i have just a small question. I have two “different” python version installed (Iron Python 2.7.3 and Python 2.7.10 (for ArcGIS).

Now I would like to add some modules like
arcpy, numpy or gdal
to my dynamo python scripts

by using:
import sys
sys.path.append(“C:\Program Files (x86)\GDAL\”)
import osgeo

I will get the standard error: “No module named gdal” … :frowning:

has anyone integrated GDAL succesfully to IronPython and Dynamo. Actually I would like to import List with X,Y Coordinates and transfrom them. By the way…i have already installed gdal 2.7 for my standard python

My stupid workaround is to use
from subprocess import Popen, PIPE

This is not really nice, but it works…