apache / datafusion-python

Apache DataFusion Python Bindings
https://datafusion.apache.org/python
Apache License 2.0
343 stars 69 forks source link

can't install version 28 in Colab #444

Closed djouallah closed 1 year ago

djouallah commented 1 year ago

pip install -i https://test.pypi.org/simple/ datafusion==28.0.0

I get

Looking in indexes: https://test.pypi.org/simple/
Collecting datafusion==28.0.0
  Using cached https://test-files.pythonhosted.org/packages/4c/6b/1f11d31c800bf05e7d6dae4337daf34ac675db6f769d5c9f6fa7131560f4/datafusion-28.0.0-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.7 MB)
INFO: pip is looking at multiple versions of datafusion to determine which version is compatible with other requirements. This could take a while.
ERROR: Could not find a version that satisfies the requirement pyarrow>=11.0.0 (from datafusion) (from versions: 0.16.0, 0.17.0, 0.17.1, 1.0.0, 1.0.1, 3.0.0, 5.0.0, 6.0.0, 7.0.0, 9.0.0)
ERROR: No matching distribution found for pyarrow>=11.0.0
gokselk commented 1 year ago

Your command is failing due to the absence of pyarrow>=11.0.0 on testpypi.

You can attempt installation using the following command:

pip install --extra-index-url https://test.pypi.org/simple/ datafusion==28.0.0
djouallah commented 1 year ago

Thank you, it works