adsharma commented on issue #804:
URL:
https://github.com/apache/incubator-graphar/issues/804#issuecomment-3691674448
@yangxk1 got a missing symbol error on
`arrow::fs::InitializeS3(arrow::fs::S3GlobalOptions const&)`
```
$ uv venv
$ source .venv/bin/activate
$ uv pip install graphar
(incubator-graphar-testing) ➜ incubator-graphar-testing git:(main) ✗ cat
test.py
import graphar
# Load graph info from a YAML file
graph_info =
graphar.graph_info.GraphInfo.load("nebula/basketballplayergraph.graph.yml")
# Access vertex information
vertex_info = graph_info.get_vertex_info("person")
print(f"Vertex type: {vertex_info.get_type()}")
# Access edge information
edge_info = graph_info.get_edge_info("person", "knows", "person")
print(f"Edge type: {edge_info.get_edge_type()}")
(incubator-graphar-testing) ➜ incubator-graphar-testing git:(main) ✗ uv run
test.py
Traceback (most recent call last):
File "/home/ubuntu/src/graphar/incubator-graphar-testing/test.py", line 1,
in <module>
import graphar
File
"/home/ubuntu/src/graphar/incubator-graphar-testing/.venv/lib/python3.13/site-packages/graphar/__init__.py",
line 20, in <module>
from .graph_info import *
File
"/home/ubuntu/src/graphar/incubator-graphar-testing/.venv/lib/python3.13/site-packages/graphar/graph_info.py",
line 18, in <module>
from ._core import DataType, Property, PropertyGroup, AdjacentList,
VertexInfo, EdgeInfo, GraphInfo
ImportError:
/home/ubuntu/src/graphar/incubator-graphar-testing/.venv/lib/python3.13/site-packages/graphar/libgraphar.so:
undefined symbol: _ZN5arrow2fs12InitializeS3ERKNS0_15S3GlobalOptionsE
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]