We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pyarrow
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using pixi --version.
pixi --version
My pixi.toml is shown below.
pixi.toml
[project] name = "easyknock_analytics" version = "0.1.0" description = "Add a short description here" authors = ["Muhammad Jarir Kanji <[email protected]>"] channels = ["conda-forge"] platforms = ["linux-64", "osx-arm64"] [tasks] dbt_run = { cmd = "dbt run" } [dependencies] python = ">=3.10,<3.11" pip = "*" pre-commit = "*" pytz = "*" pandas = ">=2.2.2,<2.3" [pypi-dependencies] dbt-core = { version = ">=1.7, <1.8" } dbt-redshift = "*" sqlfluff = "*" sqlfluff-templater-dbt = "*" dbt-coves = "*" [feature.dev.dependencies] [environments] dev = { features = ["dev"], solve-group = "dev" } prod = { features = [], solve-group = "dev" }
Then, simply do:
pixi run python > import pyarrow
This results in an undefined symbol error for Arrow:
undefined symbol
ImportError: .pixi/envs/default/lib/python3.10/site-packages/pyarrow/libarrow_python.so: undefined symbol: _ZNK5arrow8DataType18ComputeFingerprintB5cxx11Ev
That Pyarrow should be installed properly.
The text was updated successfully, but these errors were encountered:
libarrow
He I can't reproduce it, could you provide a pixi.lock for which this issue exist?
pixi.lock
I installed your pixi.toml on my linux-64 machine and I could correctly import pyarrow
linux-64
import pyarrow
Sorry, something went wrong.
I remember having such an issue - the problem was that pyarrow installed by pypi was interfering with pyarrow installed by pixi
Closing this since missing a proper reproducer. Feel free to reopen if you are still having problems!
No branches or pull requests
Checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pixi, using
pixi --version
.Reproducible example
My
pixi.toml
is shown below.pixi.toml
Then, simply do:
pixi run python > import pyarrow
Issue description
This results in an
undefined symbol
error for Arrow:Expected behavior
That Pyarrow should be installed properly.
The text was updated successfully, but these errors were encountered: