Skip to content
Snippets Groups Projects
Commit 79440929 authored by Boman Romain's avatar Boman Romain
Browse files

debug script

parent cd725857
No related branches found
No related tags found
No related merge requests found
Pipeline #7101 passed
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
import sys, os
print('sys.path=')
for d in sys.path:
print(d)
print(f"PYTHONPATH={os.environ['PYTHONPATH']}")
# newpath = sys.path
# newpath = [d for d in newpath if not 'gmsh' in d ]
# sys.path = newpath
print('sys.path=')
for d in sys.path:
print(d)
import gmsh
print('version =',gmsh.GMSH_API_VERSION)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment