rapidsai-community / rapidsai-csp-utils

35 stars 61 forks source link

No module named pyarrow._cuda #60

Closed CedrickArmel closed 1 year ago

CedrickArmel commented 2 years ago

I get this issue while importing cudf or cuml in colab after runned rapids.ai installation steps in the installation notebook.https://colab.research.google.com/drive/1rY7Ln6rEE1pOlfSHCYOVaqt8OvDO35J0#forceEdit=true&offline=true&sandboxMode=true

githendumukiri commented 2 years ago

Same here, I've noticed people having issues with this py_arrow previously seems like the team gradually updated versions, but v5.0 is breaking the notebook on the v21.12.

`--------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in () ----> 1 import cuml

5 frames /usr/local/lib/python3.7/site-packages/cuml/init.py in () 15 # 16 ---> 17 from cuml.common.base import Base 18 from cuml.common.handle import Handle 19 import cuml.common.cuda as cuda

/usr/local/lib/python3.7/site-packages/cuml/common/init.py in () 15 # 16 ---> 17 from cuml.common.array import CumlArray 18 from cuml.common.array_sparse import SparseCumlArray 19

/usr/local/lib/python3.7/site-packages/cuml/common/array.py in () 23 # https://github.com/rapidsai/cuml/issues/4332 24 # from rmm import DeviceBuffer ---> 25 from cudf import DataFrame 26 from cudf import Series 27 from cudf.core.buffer import Buffer

/usr/local/lib/python3.7/site-packages/cudf/init.py in () 10 11 from cudf.api.types import dtype ---> 12 from cudf import api, core, datasets, testing 13 from cudf._version import get_versions 14 from cudf.api.extensions import (

/usr/local/lib/python3.7/site-packages/cudf/datasets.py in () 3 4 import cudf ----> 5 from cudf._lib.transform import bools_to_mask 6 from cudf.core.column_accessor import ColumnAccessor 7

/usr/local/lib/python3.7/site-packages/cudf/_lib/init.py in () 2 import numpy as np 3 ----> 4 from . import ( 5 avro, 6 binaryop,

cudf/_lib/gpuarrow.pyx in init cudf._lib.gpuarrow()

ModuleNotFoundError: No module named 'pyarrow._cuda'


NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the "Open Examples" button below. --------------------------------------------------------------------------- --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in () ----> 1 import cudf

2 frames /usr/local/lib/python3.7/site-packages/cudf/_lib/init.py in () 2 import numpy as np 3 ----> 4 from . import ( 5 avro, 6 binaryop,

cudf/_lib/gpuarrow.pyx in init cudf._lib.gpuarrow()

ModuleNotFoundError: No module named 'pyarrow._cuda'


NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt.

To view examples of installing some common dependencies, click the "Open Examples" button below. ---------------------------------------------------------------------------`

triper1022 commented 2 years ago

the same issue....

githendumukiri commented 2 years ago

According to @taureandyernv

https://github.com/rapidsai/cudf/issues/10187. We weren't the only packages affected by it. Today, as Colab doesn't support the latest RAPIDS stable, we recommend transitioning to SageMaker Studio Lab. A notice will go out soon, along with a blog, but if you'd like, please try out the capability here: https://github.com/rapidsai-community/rapids-smsl You will need a SageMaker Studip Lab account to begin. All that information is in the readme. Hope this helps.

taureandyernv commented 1 year ago

I think we fixed this in an update. closing. thanks for letting us know

J0hnArren commented 10 months ago

I think we fixed this in an update. closing. thanks for letting us know

Has this bug been fixed? How can this issue be solved?