rapidsai / cudf

cuDF - GPU DataFrame Library
https://docs.rapids.ai/api/cudf/stable/
Apache License 2.0
8.35k stars 890 forks source link

error at %load_ext cudf.pandas on WSL 2 #14416

Closed bagheriali2001 closed 11 months ago

bagheriali2001 commented 11 months ago

Describe the bug When I use

%load_ext pd.pandas
import pandas as pd

in WSL2 with fresh install of cudf, I get an error ModuleNotFoundError: No module named 'pd'

Complete error log:

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
/home/ubuntu/github.com/bagheriali2001/fantastic-octo-barnacle/Final/GPU/code-MI.ipynb Cell 1 line 6
      [1](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=0) ##################################################
      [2](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=1) ########## Loading Necessary Libraries  ##########
      [3](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=2) ##################################################
      [4](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=3) 
      [5](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=4) # import cudf
----> [6](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=5) get_ipython().run_line_magic('load_ext', 'pd.pandas')
      [7](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=6) # pandas API is now GPU accelerated
      [9](code-MI.ipynb#X10sdnNjb2RlLXJlbW90ZQ%3D%3D?line=8) import pandas as pd

File [~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2454](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2454), in InteractiveShell.run_line_magic(self, magic_name, line, _stack_depth)
   [2452](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2452)     kwargs['local_ns'] = self.get_local_scope(stack_depth)
   [2453](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2453) with self.builtin_trap:
-> [2454](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2454)     result = fn(*args, **kwargs)
   [2456](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2456) # The code below prevents the output from being displayed
   [2457](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2457) # when using magics with decorator @output_can_be_silenced
   [2458](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2458) # when the last Python token in the expression is a ';'.
   [2459](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/interactiveshell.py:2459) if getattr(fn, magic.MAGIC_OUTPUT_CAN_BE_SILENCED, False):

File [~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:33](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:33), in ExtensionMagics.load_ext(self, module_str)
     [31](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:31) if not module_str:
     [32](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:32)     raise UsageError('Missing module name.')
---> [33](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:33) res = self.shell.extension_manager.load_extension(module_str)
     [35](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:35) if res == 'already loaded':
     [36](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/magics/extension.py:36)     print("The %s extension is already loaded. To reload it, use:" % module_str)

File [~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:76](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:76), in ExtensionManager.load_extension(self, module_str)
     [69](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:69) """Load an IPython extension by its module name.
     [70](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:70) 
     [71](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:71) Returns the string "already loaded" if the extension is already loaded,
     [72](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:72) "no load function" if the module doesn't have a load_ipython_extension
     [73](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:73) function, or None if it succeeded.
     [74](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:74) """
     [75](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:75) try:
---> [76](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:76)     return self._load_extension(module_str)
     [77](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:77) except ModuleNotFoundError:
     [78](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:78)     if module_str in BUILTINS_EXTS:

File [~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:91](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:91), in ExtensionManager._load_extension(self, module_str)
     [89](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:89) with self.shell.builtin_trap:
     [90](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:90)     if module_str not in sys.modules:
---> [91](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:91)         mod = import_module(module_str)
     [92](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:92)     mod = sys.modules[module_str]
     [93](~/miniconda3/envs/rapids-23.10/lib/python3.10/site-packages/IPython/core/extensions.py:93)     if self._call_load_ipython_extension(mod):

File [~/miniconda3/envs/rapids-23.10/lib/python3.10/importlib/__init__.py:126](~/miniconda3/envs/rapids-23.10/lib/python3.10/importlib/__init__.py:126), in import_module(name, package)
    [124](~/miniconda3/envs/rapids-23.10/lib/python3.10/importlib/__init__.py:124)             break
    [125](~/miniconda3/envs/rapids-23.10/lib/python3.10/importlib/__init__.py:125)         level += 1
--> [126](~/miniconda3/envs/rapids-23.10/lib/python3.10/importlib/__init__.py:126) return _bootstrap._gcd_import(name[level:], package, level)

File <frozen importlib._bootstrap>:1050, in _gcd_import(name, package, level)

File <frozen importlib._bootstrap>:1027, in _find_and_load(name, import_)

File <frozen importlib._bootstrap>:992, in _find_and_load_unlocked(name, import_)

File <frozen importlib._bootstrap>:241, in _call_with_frames_removed(f, *args, **kwds)

File <frozen importlib._bootstrap>:1050, in _gcd_import(name, package, level)

File <frozen importlib._bootstrap>:1027, in _find_and_load(name, import_)

File <frozen importlib._bootstrap>:1004, in _find_and_load_unlocked(name, import_)

ModuleNotFoundError: No module named 'pd'

Steps/Code to reproduce bug Ran Notebooks first block:

%load_ext pd.pandas
# pandas API is now GPU accelerated

import pandas as pd

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline

import time

Expected behavior Import without error.

Environment overview (please complete the following information)

Environment details

<details><summary>Click here to see environment details</summary><pre>

     **git***
print_env.sh: 11: [: true: unexpected operator
     Not inside a git repository

     ***OS Information***
     DISTRIB_ID=Ubuntu
     DISTRIB_RELEASE=22.04
     DISTRIB_CODENAME=jammy
     DISTRIB_DESCRIPTION="Ubuntu 22.04.2 LTS"
     PRETTY_NAME="Ubuntu 22.04.2 LTS"
     NAME="Ubuntu"
     VERSION_ID="22.04"
     VERSION="22.04.2 LTS (Jammy Jellyfish)"
     VERSION_CODENAME=jammy
     ID=ubuntu
     ID_LIKE=debian
     HOME_URL="https://www.ubuntu.com/"
     SUPPORT_URL="https://help.ubuntu.com/"
     BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
     PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
     UBUNTU_CODENAME=jammy
     Linux DESKTOP-32MM8DI 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 00:30:59 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

     ***GPU Information***
     Thu Nov 16 00:06:29 2023
     +---------------------------------------------------------------------------------------+
     | NVIDIA-SMI 545.23.05              Driver Version: 545.84       CUDA Version: 12.3     |
     |-----------------------------------------+----------------------+----------------------+
     | GPU  Name                 Persistence-M | Bus-Id        Disp.A | Volatile Uncorr. ECC |
     | Fan  Temp   Perf          Pwr:Usage/Cap |         Memory-Usage | GPU-Util  Compute M. |
     |                                         |                      |               MIG M. |
     |=========================================+======================+======================|
     |   0  NVIDIA GeForce GTX 1650 Ti     On  | 00000000:01:00.0 Off |                  N/A |
     | N/A   61C    P8               3W /  50W |     56MiB /  4096MiB |      0%      Default |
     |                                         |                      |                  N/A |
     +-----------------------------------------+----------------------+----------------------+

     +---------------------------------------------------------------------------------------+
     | Processes:                                                                            |
     |  GPU   GI   CI        PID   Type   Process name                            GPU Memory |
     |        ID   ID                                                             Usage      |
     |=======================================================================================|
     |    0   N/A  N/A      1222      C   /python3.10                               N/A      |
     +---------------------------------------------------------------------------------------+

     ***CPU***
     Architecture:                    x86_64
     CPU op-mode(s):                  32-bit, 64-bit
     Address sizes:                   39 bits physical, 48 bits virtual
     Byte Order:                      Little Endian
     CPU(s):                          12
     On-line CPU(s) list:             0-11
     Vendor ID:                       GenuineIntel
     Model name:                      Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz
     CPU family:                      6
     Model:                           165
     Thread(s) per core:              2
     Core(s) per socket:              6
     Socket(s):                       1
     Stepping:                        2
     BogoMIPS:                        5184.01
     Flags:                           fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology cpuid pni pclmulqdq vmx ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi ept vpid ept_ad fsgsbase bmi1 avx2 smep bmi2 erms invpcid rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 xsaves flush_l1d arch_capabilities
     Virtualization:                  VT-x
     Hypervisor vendor:               Microsoft
     Virtualization type:             full
     L1d cache:                       192 KiB (6 instances)
     L1i cache:                       192 KiB (6 instances)
     L2 cache:                        1.5 MiB (6 instances)
     L3 cache:                        12 MiB (1 instance)
     Vulnerability Itlb multihit:     KVM: Mitigation: VMX disabled
     Vulnerability L1tf:              Not affected
     Vulnerability Mds:               Not affected
     Vulnerability Meltdown:          Not affected
     Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp
     Vulnerability Spectre v1:        Mitigation; usercopy/swapgs barriers and __user pointer sanitization
     Vulnerability Spectre v2:        Mitigation; Enhanced IBRS, IBPB conditional, RSB filling
     Vulnerability Srbds:             Not affected
     Vulnerability Tsx async abort:   Not affected

     ***CMake***

     ***g++***

     ***nvcc***
     /home/ubuntu/miniconda3/envs/rapids-23.10/bin/nvcc
     nvcc: NVIDIA (R) Cuda compiler driver
     Copyright (c) 2005-2022 NVIDIA Corporation
     Built on Mon_Oct_24_19:12:58_PDT_2022
     Cuda compilation tools, release 12.0, V12.0.76
     Build cuda_12.0.r12.0/compiler.31968024_0

     ***Python***
     /home/ubuntu/miniconda3/envs/rapids-23.10/bin/python
     Python 3.10.13

     ***Environment Variables***
     PATH                            : /home/ubuntu/.vscode-server/bin/1a5daa3a0231a0fbba4f14db7ec463cf99d7768e/bin/remote-cli:/home/ubuntu/miniconda3/envs/rapids-23.10/bin:/home/ubuntu/miniconda3/condabin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Program
     Files/NVIDIA                    : GPU
     Computing                       : Toolkit/CUDA/v12.3/bin:/mnt/c/Program
     Files/NVIDIA                    : GPU
     Computing                       : Toolkit/CUDA/v12.3/libnvvp:/mnt/c/Program
     Files                           : (x86)/Common
     Files/Oracle/Java/javapath:/mnt/c/Python311/Scripts:/mnt/c/Python311:/mnt/c/ProgramData/Oracle/Java/javapath:/mnt/c/Windows/system32:/mnt/c/Windows:/mnt/c/Windows/System32/Wbem:/mnt/c/Windows/System32/WindowsPowerShell/v1.0:/mnt/c/Windows/System32/OpenSSH:/mnt/c/Program: Files/NVIDIA
     Corporation/NVIDIA              : NvDLISR:/mnt/c/Program
     Files/TorchStudio/bin:/mnt/c/Program: Files/Docker/Docker/resources/bin:/mnt/c/Program
     Files/dotnet:/mnt/c/Program     : Files
     (x86)/nodejs:/mnt/c/ProgramData/chocolatey/bin:/mnt/c/Program: Files/Git/cmd:/mnt/c/Program
     Files/WireSock                  : VPN
     Client/bin:/mnt/c/Program       : Files/PowerShell/7:/mnt/c/Program
     Files/NVIDIA                    : Corporation/Nsight
     Compute                         : 2023.3.0:/mnt/c/Program
     Files                           : (x86)/NVIDIA
     Corporation/PhysX/Common:/mnt/c/Users/Ali/.console-ninja/.bin:/mnt/c/Users/Ali/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/Ali/AppData/Local/JetBrains/Toolbox/scripts:/mnt/c/Users/Ali/AppData/Roaming/npm:/mnt/c/Users/Ali/AppData/Local/Programs/Microsoft: VS
     Code/bin:/snap/bin              :
     LD_LIBRARY_PATH                 :
     NUMBAPRO_NVVM                   :
     NUMBAPRO_LIBDEVICE              :
     CONDA_PREFIX                    : /home/ubuntu/miniconda3/envs/rapids-23.10
     PYTHON_PATH                     :

     ***conda packages***
     conda is /home/ubuntu/miniconda3/condabin/conda
     /home/ubuntu/miniconda3/condabin/conda
     # packages in environment at /home/ubuntu/miniconda3/envs/rapids-23.10:
     #
     # Name                    Version                   Build  Channel
     _libgcc_mutex             0.1                 conda_forge    conda-forge
     _openmp_mutex             4.5                       2_gnu    conda-forge
     aiohttp                   3.8.6           py310h2372a71_1    conda-forge
     aiosignal                 1.3.1              pyhd8ed1ab_0    conda-forge
     anyio                     4.0.0              pyhd8ed1ab_0    conda-forge
     aom                       3.7.0                h59595ed_0    conda-forge
     appdirs                   1.4.4              pyh9f0ad1d_0    conda-forge
     argon2-cffi               23.1.0             pyhd8ed1ab_0    conda-forge
     argon2-cffi-bindings      21.2.0          py310h2372a71_4    conda-forge
     arrow                     1.3.0              pyhd8ed1ab_0    conda-forge
     asttokens                 2.4.1              pyhd8ed1ab_0    conda-forge
     async-timeout             4.0.3              pyhd8ed1ab_0    conda-forge
     attrs                     23.1.0             pyh71513ae_1    conda-forge
     aws-c-auth                0.7.4                hc8144f4_1    conda-forge
     aws-c-cal                 0.6.2                h09139f6_2    conda-forge
     aws-c-common              0.9.3                hd590300_0    conda-forge
     aws-c-compression         0.2.17               h184a658_3    conda-forge
     aws-c-event-stream        0.3.2                hd6ebb48_1    conda-forge
     aws-c-http                0.7.13               hc690213_1    conda-forge
     aws-c-io                  0.13.32              h161b759_6    conda-forge
     aws-c-mqtt                0.9.6                h32970c0_2    conda-forge
     aws-c-s3                  0.3.17               hb5e3142_3    conda-forge
     aws-c-sdkutils            0.1.12               h184a658_2    conda-forge
     aws-checksums             0.1.17               h184a658_2    conda-forge
     aws-crt-cpp               0.23.1               h94c364a_5    conda-forge
     aws-sdk-cpp               1.11.156             h6600424_3    conda-forge
     backports                 1.0                pyhd8ed1ab_3    conda-forge
     backports.functools_lru_cache 1.6.5              pyhd8ed1ab_0    conda-forge
     beautifulsoup4            4.12.2             pyha770c72_0    conda-forge
     bleach                    6.1.0              pyhd8ed1ab_0    conda-forge
     blosc                     1.21.5               h0f2a231_0    conda-forge
     bokeh                     3.3.1              pyhd8ed1ab_0    conda-forge
     branca                    0.7.0              pyhd8ed1ab_1    conda-forge
     brotli                    1.1.0                hd590300_1    conda-forge
     brotli-bin                1.1.0                hd590300_1    conda-forge
     brotli-python             1.1.0           py310hc6cd4ac_1    conda-forge
     brunsli                   0.1                  h9c3ff4c_0    conda-forge
     bzip2                     1.0.8                hd590300_5    conda-forge
     c-ares                    1.21.0               hd590300_0    conda-forge
     c-blosc2                  2.11.2               hb4ffafa_0    conda-forge
     ca-certificates           2023.7.22            hbcca054_0    conda-forge
     cached-property           1.5.2                hd8ed1ab_1    conda-forge
     cached_property           1.5.2              pyha770c72_1    conda-forge
     cachetools                5.3.2              pyhd8ed1ab_0    conda-forge
     cairo                     1.18.0               h3faef2a_0    conda-forge
     certifi                   2023.7.22          pyhd8ed1ab_0    conda-forge
     cffi                      1.16.0          py310h2fee648_0    conda-forge
     cfitsio                   4.3.0                hbdc6101_0    conda-forge
     charls                    2.4.2                h59595ed_0    conda-forge
     charset-normalizer        3.3.2              pyhd8ed1ab_0    conda-forge
     click                     8.1.7           unix_pyh707e725_0    conda-forge
     click-plugins             1.1.1                      py_0    conda-forge
     cligj                     0.7.2              pyhd8ed1ab_1    conda-forge
     cloudpickle               3.0.0              pyhd8ed1ab_0    conda-forge
     colorama                  0.4.6              pyhd8ed1ab_0    conda-forge
     colorcet                  3.0.1              pyhd8ed1ab_0    conda-forge
     comm                      0.1.4              pyhd8ed1ab_0    conda-forge
     contourpy                 1.2.0           py310hd41b1e2_0    conda-forge
     cucim                     23.10.00        cuda12_py310_231011_g8dd1727_0    rapidsai
     cuda-cccl_linux-64        12.0.90              ha770c72_1    conda-forge
     cuda-cudart               12.0.107             h59595ed_6    conda-forge
     cuda-cudart-dev           12.0.107             h59595ed_6    conda-forge
     cuda-cudart-dev_linux-64  12.0.107             h59595ed_6    conda-forge
     cuda-cudart-static        12.0.107             h59595ed_6    conda-forge
     cuda-cudart-static_linux-64 12.0.107             h59595ed_6    conda-forge
     cuda-cudart_linux-64      12.0.107             h59595ed_6    conda-forge
     cuda-nvcc-dev_linux-64    12.0.76              ha770c72_1    conda-forge
     cuda-nvcc-impl            12.0.76              h59595ed_1    conda-forge
     cuda-nvcc-tools           12.0.76              h59595ed_1    conda-forge
     cuda-nvrtc                12.0.76              h59595ed_1    conda-forge
     cuda-nvtx                 12.0.76              hcb278e6_0    conda-forge
     cuda-profiler-api         12.0.76              ha770c72_0    conda-forge
     cuda-python               12.0.0          py310hcb41016_2    conda-forge
     cuda-version              12.0                 hffde075_2    conda-forge
     cudf                      23.10.01        cuda12_py310_231107_g1a0c07670f_0    rapidsai
     cudf_kafka                23.10.01        cuda12_py310_231107_g1a0c07670f_0    rapidsai
     cugraph                   23.10.00        cuda12_py310_231011_gc3dc860d_0    rapidsai
     cuml                      23.10.00        cuda12_py310_231011_g623996072_0    rapidsai
     cuproj                    23.10.00        cuda12_py310_231011_g29cddcdc_0    rapidsai
     cupy                      12.2.0          py310he66c036_3    conda-forge
     cuspatial                 23.10.00        cuda12_py310_231011_g29cddcdc_0    rapidsai
     custreamz                 23.10.01        cuda12_py310_231107_g1a0c07670f_0    rapidsai
     cuxfilter                 23.10.00        cuda12_py310_231011_g6600aff_0    rapidsai
     cycler                    0.12.1             pyhd8ed1ab_0    conda-forge
     cyrus-sasl                2.1.27               h54b06d7_7    conda-forge
     cytoolz                   0.12.2          py310h2372a71_1    conda-forge
     dask                      2023.9.2           pyhd8ed1ab_0    conda-forge
     dask-core                 2023.9.2           pyhd8ed1ab_0    conda-forge
     dask-cuda                 23.10.00        py310_231011_gdc811d3_0    rapidsai
     dask-cudf                 23.10.01        cuda12_py310_231107_g1a0c07670f_0    rapidsai
     datashader                0.16.0             pyhd8ed1ab_0    conda-forge
     dav1d                     1.2.1                hd590300_0    conda-forge
     debugpy                   1.8.0           py310hc6cd4ac_1    conda-forge
     decorator                 5.1.1              pyhd8ed1ab_0    conda-forge
     defusedxml                0.7.1              pyhd8ed1ab_0    conda-forge
     distributed               2023.9.2           pyhd8ed1ab_0    conda-forge
     dlpack                    0.5                  h9c3ff4c_0    conda-forge
     entrypoints               0.4                pyhd8ed1ab_0    conda-forge
     exceptiongroup            1.1.3              pyhd8ed1ab_0    conda-forge
     executing                 2.0.1              pyhd8ed1ab_0    conda-forge
     expat                     2.5.0                hcb278e6_1    conda-forge
     fastrlock                 0.8.2           py310hc6cd4ac_1    conda-forge
     fiona                     1.9.5           py310h0a1e91f_1    conda-forge
     fmt                       9.1.0                h924138e_0    conda-forge
     folium                    0.15.0             pyhd8ed1ab_0    conda-forge
     font-ttf-dejavu-sans-mono 2.37                 hab24e00_0    conda-forge
     font-ttf-inconsolata      3.000                h77eed37_0    conda-forge
     font-ttf-source-code-pro  2.038                h77eed37_0    conda-forge
     font-ttf-ubuntu           0.83                 hab24e00_0    conda-forge
     fontconfig                2.14.2               h14ed4e7_0    conda-forge
     fonts-conda-ecosystem     1                             0    conda-forge
     fonts-conda-forge         1                             0    conda-forge
     fonttools                 4.44.1          py310h2372a71_0    conda-forge
     fqdn                      1.5.1              pyhd8ed1ab_0    conda-forge
     freetype                  2.12.1               h267a509_2    conda-forge
     freexl                    2.0.0                h743c826_0    conda-forge
     frozenlist                1.4.0           py310h2372a71_1    conda-forge
     fsspec                    2023.10.0          pyhca7485f_0    conda-forge
     gdal                      3.8.0           py310h5c4b078_1    conda-forge
     gdk-pixbuf                2.42.10              h829c605_4    conda-forge
     geopandas                 0.14.1             pyhd8ed1ab_0    conda-forge
     geopandas-base            0.14.1             pyha770c72_0    conda-forge
     geos                      3.12.0               h59595ed_0    conda-forge
     geotiff                   1.7.1               hf074850_14    conda-forge
     gettext                   0.21.1               h27087fc_0    conda-forge
     gflags                    2.2.2             he1b5a44_1004    conda-forge
     giflib                    5.2.1                h0b41bf4_3    conda-forge
     glog                      0.6.0                h6f12383_0    conda-forge
     gmock                     1.14.0               ha770c72_1    conda-forge
     gtest                     1.14.0               h00ab1b0_1    conda-forge
     hdf4                      4.2.15               h2a13503_7    conda-forge
     hdf5                      1.14.2          nompi_h4f84152_100    conda-forge
     holoviews                 1.18.1             pyhd8ed1ab_0    conda-forge
     icu                       73.2                 h59595ed_0    conda-forge
     idna                      3.4                pyhd8ed1ab_0    conda-forge
     imagecodecs               2023.9.18       py310h496a806_2    conda-forge
     imageio                   2.31.5             pyh8c1a49c_0    conda-forge
     importlib-metadata        6.8.0              pyha770c72_0    conda-forge
     importlib_metadata        6.8.0                hd8ed1ab_0    conda-forge
     importlib_resources       6.1.1              pyhd8ed1ab_0    conda-forge
     ipykernel                 6.26.0             pyhf8b6a83_0    conda-forge
     ipython                   8.17.2             pyh41d4057_0    conda-forge
     isoduration               20.11.0            pyhd8ed1ab_0    conda-forge
     jbig                      2.1               h7f98852_2003    conda-forge
     jedi                      0.19.1             pyhd8ed1ab_0    conda-forge
     jinja2                    3.1.2              pyhd8ed1ab_1    conda-forge
     joblib                    1.3.2              pyhd8ed1ab_0    conda-forge
     json-c                    0.17                 h7ab15ed_0    conda-forge
     jsonpointer               2.4             py310hff52083_3    conda-forge
     jsonschema                4.19.2             pyhd8ed1ab_0    conda-forge
     jsonschema-specifications 2023.11.1          pyhd8ed1ab_0    conda-forge
     jsonschema-with-format-nongpl 4.19.2             pyhd8ed1ab_0    conda-forge
     jupyter-server-proxy      4.1.0              pyhd8ed1ab_0    conda-forge
     jupyter_client            8.6.0              pyhd8ed1ab_0    conda-forge
     jupyter_core              5.5.0           py310hff52083_0    conda-forge
     jupyter_events            0.9.0              pyhd8ed1ab_0    conda-forge
     jupyter_server            2.10.1             pyhd8ed1ab_0    conda-forge
     jupyter_server_terminals  0.4.4              pyhd8ed1ab_1    conda-forge
     jupyterlab_pygments       0.2.2              pyhd8ed1ab_0    conda-forge
     jxrlib                    1.1                  h7f98852_2    conda-forge
     kealib                    1.5.2                hcd42e92_1    conda-forge
     keyutils                  1.6.1                h166bdaf_0    conda-forge
     kiwisolver                1.4.5           py310hd41b1e2_1    conda-forge
     krb5                      1.21.2               h659d440_0    conda-forge
     lazy_loader               0.3                pyhd8ed1ab_0    conda-forge
     lcms2                     2.15                 hb7c19ff_3    conda-forge
     ld_impl_linux-64          2.40                 h41732ed_0    conda-forge
     lerc                      4.0.0                h27087fc_0    conda-forge
     libabseil                 20230802.1      cxx17_h59595ed_0    conda-forge
     libaec                    1.1.2                h59595ed_1    conda-forge
     libarchive                3.7.2                h039dbb9_0    conda-forge
     libarrow                  12.0.1          h1935d02_14_cpu    conda-forge
     libavif16                 1.0.1                hed45d22_3    conda-forge
     libblas                   3.9.0           19_linux64_openblas    conda-forge
     libboost-headers          1.82.0               ha770c72_6    conda-forge
     libbrotlicommon           1.1.0                hd590300_1    conda-forge
     libbrotlidec              1.1.0                hd590300_1    conda-forge
     libbrotlienc              1.1.0                hd590300_1    conda-forge
     libcblas                  3.9.0           19_linux64_openblas    conda-forge
     libcrc32c                 1.1.2                h9c3ff4c_0    conda-forge
     libcublas                 12.0.1.189           hcb278e6_2    conda-forge
     libcublas-dev             12.0.1.189           hcb278e6_2    conda-forge
     libcucim                  23.10.00        cuda12_231011_g8dd1727_0    rapidsai
     libcudf                   23.10.01        cuda12_231107_g1a0c07670f_0    rapidsai
     libcudf_kafka             23.10.01        cuda12_231107_g1a0c07670f_0    rapidsai
     libcufft                  11.0.0.21            hcb278e6_1    conda-forge
     libcufile                 1.5.0.59             hcb278e6_0    conda-forge
     libcufile-dev             1.5.0.59             hcb278e6_0    conda-forge
     libcugraph                23.10.00        cuda12_231011_gc3dc860d_0    rapidsai
     libcugraph_etl            23.10.00        cuda12_231011_gc3dc860d_0    rapidsai
     libcugraphops             23.10.00        cuda12_231011_gca4b54ac_0    nvidia
     libcuml                   23.10.00        cuda12_231011_g623996072_0    rapidsai
     libcumlprims              23.10.00        cuda12_231011_ge818397_0    nvidia
     libcurand                 10.3.1.50            hcb278e6_0    conda-forge
     libcurand-dev             10.3.1.50            hcb278e6_0    conda-forge
     libcurl                   8.4.0                hca28451_0    conda-forge
     libcusolver               11.4.2.57            hcb278e6_1    conda-forge
     libcusolver-dev           11.4.2.57            hcb278e6_1    conda-forge
     libcusparse               12.0.0.76            hcb278e6_1    conda-forge
     libcusparse-dev           12.0.0.76            hcb278e6_1    conda-forge
     libcuspatial              23.10.00        cuda12_231011_g29cddcdc_0    rapidsai
     libdeflate                1.19                 hd590300_0    conda-forge
     libedit                   3.1.20191231         he28a2e2_2    conda-forge
     libev                     4.33                 h516909a_1    conda-forge
     libevent                  2.1.12               hf998b51_1    conda-forge
     libexpat                  2.5.0                hcb278e6_1    conda-forge
     libffi                    3.4.2                h7f98852_5    conda-forge
     libgcc-ng                 13.2.0               h807b86a_3    conda-forge
     libgdal                   3.8.0                h0a992f2_1    conda-forge
     libgfortran-ng            13.2.0               h69a702a_3    conda-forge
     libgfortran5              13.2.0               ha4646dd_3    conda-forge
     libglib                   2.78.1               hebfc3b9_0    conda-forge
     libgomp                   13.2.0               h807b86a_3    conda-forge
     libgoogle-cloud           2.12.0               h8d7e28b_2    conda-forge
     libgrpc                   1.57.0               ha4d0f93_2    conda-forge
     libiconv                  1.17                 h166bdaf_0    conda-forge
     libjpeg-turbo             3.0.0                hd590300_1    conda-forge
     libkml                    1.3.0             h01aab08_1018    conda-forge
     libkvikio                 23.10.00        cuda12_231011_g5ea0525_0    rapidsai
     liblapack                 3.9.0           19_linux64_openblas    conda-forge
     libllvm14                 14.0.6               hcd5def8_4    conda-forge
     libnetcdf                 4.9.2           nompi_h80fb2b6_112    conda-forge
     libnghttp2                1.58.0               h47da74e_0    conda-forge
     libnsl                    2.0.1                hd590300_0    conda-forge
     libntlm                   1.4               h7f98852_1002    conda-forge
     libnuma                   2.0.16               h0b41bf4_1    conda-forge
     libnvjitlink              12.0.76              hcb278e6_1    conda-forge
     libnvjpeg                 12.0.0.28            h59595ed_0    conda-forge
     libopenblas               0.3.24          pthreads_h413a1c8_0    conda-forge
     libpng                    1.6.39               h753d276_0    conda-forge
     libpq                     16.1                 hfc447b1_0    conda-forge
     libprotobuf               4.23.4               hf27288f_6    conda-forge
     libraft                   23.10.00        cuda12_231011_gafdddfb3_0    rapidsai
     libraft-headers           23.10.00        cuda12_231011_gafdddfb3_0    rapidsai
     libraft-headers-only      23.10.00        cuda12_231011_gafdddfb3_0    rapidsai
     librdkafka                1.9.2                ha5a0de0_2    conda-forge
     librmm                    23.10.00        cuda12_231011_gf8ac6f8e_0    rapidsai
     librttopo                 1.1.0               hb58d41b_14    conda-forge
     libsodium                 1.0.18               h36c2ea0_1    conda-forge
     libspatialindex           1.9.3                h9c3ff4c_4    conda-forge
     libspatialite             5.1.0                h090f1da_1    conda-forge
     libsqlite                 3.44.0               h2797004_0    conda-forge
     libssh2                   1.11.0               h0841786_0    conda-forge
     libstdcxx-ng              13.2.0               h7e041cc_3    conda-forge
     libthrift                 0.19.0               hb90f79a_1    conda-forge
     libtiff                   4.6.0                ha9c0a0a_2    conda-forge
     libutf8proc               2.8.0                h166bdaf_0    conda-forge
     libuuid                   2.38.1               h0b41bf4_0    conda-forge
     libuv                     1.46.0               hd590300_0    conda-forge
     libwebp                   1.3.2                h658648e_1    conda-forge
     libwebp-base              1.3.2                hd590300_0    conda-forge
     libxcb                    1.15                 h0b41bf4_0    conda-forge
     libxgboost                1.7.6           rapidsai_hfb38c85_2310    rapidsai
     libxml2                   2.11.5               h232c23b_1    conda-forge
     libzip                    1.10.1               h2629f0a_3    conda-forge
     libzlib                   1.2.13               hd590300_5    conda-forge
     libzopfli                 1.0.3                h9c3ff4c_0    conda-forge
     linkify-it-py             2.0.0              pyhd8ed1ab_0    conda-forge
     llvmlite                  0.40.1          py310h1b8f574_0    conda-forge
     locket                    1.0.0              pyhd8ed1ab_0    conda-forge
     lz4                       4.3.2           py310h350c4a5_1    conda-forge
     lz4-c                     1.9.4                hcb278e6_0    conda-forge
     lzo                       2.10              h516909a_1000    conda-forge
     mapclassify               2.6.1              pyhd8ed1ab_0    conda-forge
     markdown                  3.5.1              pyhd8ed1ab_0    conda-forge
     markdown-it-py            3.0.0              pyhd8ed1ab_0    conda-forge
     markupsafe                2.1.3           py310h2372a71_1    conda-forge
     matplotlib-base           3.8.1           py310h62c0568_0    conda-forge
     matplotlib-inline         0.1.6              pyhd8ed1ab_0    conda-forge
     mdit-py-plugins           0.4.0              pyhd8ed1ab_0    conda-forge
     mdurl                     0.1.0              pyhd8ed1ab_0    conda-forge
     minizip                   4.0.3                h0ab5242_0    conda-forge
     mistune                   3.0.2              pyhd8ed1ab_0    conda-forge
     msgpack-python            1.0.6           py310hd41b1e2_0    conda-forge
     multidict                 6.0.4           py310h2372a71_1    conda-forge
     multipledispatch          0.6.0                      py_0    conda-forge
     munch                     4.0.0              pyhd8ed1ab_0    conda-forge
     munkres                   1.1.4              pyh9f0ad1d_0    conda-forge
     nbclient                  0.8.0              pyhd8ed1ab_0    conda-forge
     nbconvert-core            7.11.0             pyhd8ed1ab_0    conda-forge
     nbformat                  5.9.2              pyhd8ed1ab_0    conda-forge
     nccl                      2.19.3.1             h3a97aeb_0    conda-forge
     ncurses                   6.4                  h59595ed_2    conda-forge
     nest-asyncio              1.5.8              pyhd8ed1ab_0    conda-forge
     networkx                  3.2.1              pyhd8ed1ab_0    conda-forge
     nodejs                    20.8.1               h1990674_0    conda-forge
     nspr                      4.35                 h27087fc_0    conda-forge
     nss                       3.94                 h1d7d5a4_0    conda-forge
     numba                     0.57.1          py310h0f6aa51_0    conda-forge
     numpy                     1.24.4          py310ha4c1d20_0    conda-forge
     nvcomp                    2.6.1                h10b603f_3    conda-forge
     nvtx                      0.2.8           py310h2372a71_1    conda-forge
     openjpeg                  2.5.0                h488ebb8_3    conda-forge
     openslide                 3.4.1               hcb9e6c7_11    conda-forge
     openssl                   3.1.4                hd590300_0    conda-forge
     orc                       1.9.0                h52d3b3c_2    conda-forge
     overrides                 7.4.0              pyhd8ed1ab_0    conda-forge
     packaging                 23.2               pyhd8ed1ab_0    conda-forge
     pandas                    1.5.3           py310h9b08913_1    conda-forge
     pandocfilters             1.5.0              pyhd8ed1ab_0    conda-forge
     panel                     1.3.1              pyhd8ed1ab_0    conda-forge
     param                     2.0.1              pyhca7485f_0    conda-forge
     parso                     0.8.3              pyhd8ed1ab_0    conda-forge
     partd                     1.4.1              pyhd8ed1ab_0    conda-forge
     pcre2                     10.40                hc3806b6_0    conda-forge
     pexpect                   4.8.0              pyh1a96a4e_2    conda-forge
     pickleshare               0.7.5                   py_1003    conda-forge
     pillow                    10.1.0          py310h01dd4db_0    conda-forge
     pip                       23.3.1             pyhd8ed1ab_0    conda-forge
     pixman                    0.42.2               h59595ed_0    conda-forge
     pkgutil-resolve-name      1.3.10             pyhd8ed1ab_1    conda-forge
     platformdirs              4.0.0              pyhd8ed1ab_0    conda-forge
     poppler                   23.11.0              h590f24d_0    conda-forge
     poppler-data              0.4.12               hd8ed1ab_0    conda-forge
     postgresql                16.1                 h8972f4a_0    conda-forge
     proj                      9.3.0                h1d62c97_2    conda-forge
     prometheus_client         0.18.0             pyhd8ed1ab_1    conda-forge
     prompt-toolkit            3.0.41             pyha770c72_0    conda-forge
     prompt_toolkit            3.0.41               hd8ed1ab_0    conda-forge
     protobuf                  4.23.4          py310h620c231_3    conda-forge
     psutil                    5.9.5           py310h2372a71_1    conda-forge
     pthread-stubs             0.4               h36c2ea0_1001    conda-forge
     ptyprocess                0.7.0              pyhd3deb0d_0    conda-forge
     pure_eval                 0.2.2              pyhd8ed1ab_0    conda-forge
     py-xgboost                1.7.6           rapidsai_py310h1395376_2310    rapidsai
     pyarrow                   12.0.1          py310hf9e7431_14_cpu    conda-forge
     pycparser                 2.21               pyhd8ed1ab_0    conda-forge
     pyct                      0.4.6                      py_0    conda-forge
     pyct-core                 0.4.6                      py_0    conda-forge
     pyee                      8.1.0              pyhd8ed1ab_0    conda-forge
     pygments                  2.16.1             pyhd8ed1ab_0    conda-forge
     pylibcugraph              23.10.00        cuda12_py310_231011_gc3dc860d_0    rapidsai
     pylibraft                 23.10.00        cuda12_py310_231011_gafdddfb3_0    rapidsai
     pynvml                    11.4.1             pyhd8ed1ab_0    conda-forge
     pyparsing                 3.1.1              pyhd8ed1ab_0    conda-forge
     pyppeteer                 1.0.2              pyhd8ed1ab_0    conda-forge
     pyproj                    3.6.1           py310h32c33b7_4    conda-forge
     pysocks                   1.7.1              pyha2e5f31_6    conda-forge
     python                    3.10.13         hd12c33a_0_cpython    conda-forge
     python-confluent-kafka    1.9.2           py310h5764c6d_2    conda-forge
     python-dateutil           2.8.2              pyhd8ed1ab_0    conda-forge
     python-fastjsonschema     2.19.0             pyhd8ed1ab_0    conda-forge
     python-json-logger        2.0.7              pyhd8ed1ab_0    conda-forge
     python_abi                3.10                    4_cp310    conda-forge
     pytz                      2023.3.post1       pyhd8ed1ab_0    conda-forge
     pyviz_comms               3.0.0              pyhd8ed1ab_0    conda-forge
     pywavelets                1.4.1           py310h1f7b6fc_1    conda-forge
     pyyaml                    6.0.1           py310h2372a71_1    conda-forge
     pyzmq                     25.1.1          py310h795f18f_2    conda-forge
     raft-dask                 23.10.00        cuda12_py310_231011_gafdddfb3_0    rapidsai
     rapids                    23.10.00        cuda12_py310_231011_gd3958fe_0    rapidsai
     rapids-xgboost            23.10.00        cuda12_py310_231011_gd3958fe_0    rapidsai
     rav1e                     0.6.6                he8a937b_2    conda-forge
     rdma-core                 28.9                 h59595ed_1    conda-forge
     re2                       2023.03.02           h8c504da_0    conda-forge
     readline                  8.2                  h8228510_1    conda-forge
     referencing               0.31.0             pyhd8ed1ab_0    conda-forge
     requests                  2.31.0             pyhd8ed1ab_0    conda-forge
     rfc3339-validator         0.1.4              pyhd8ed1ab_0    conda-forge
     rfc3986-validator         0.1.1              pyh9f0ad1d_0    conda-forge
     rich                      13.6.0             pyhd8ed1ab_0    conda-forge
     rmm                       23.10.00        cuda12_py310_231011_gf8ac6f8e_0    rapidsai
     rpds-py                   0.12.0          py310hcb5633a_0    conda-forge
     rtree                     1.1.0           py310hbdcdc62_0    conda-forge
     s2n                       1.3.54               h06160fa_0    conda-forge
     scikit-image              0.21.0          py310hc6cd4ac_0    conda-forge
     scikit-learn              1.3.2           py310h1fdf081_1    conda-forge
     scipy                     1.11.3          py310hb13e2d6_1    conda-forge
     seaborn                   0.13.0                   pypi_0    pypi
     send2trash                1.8.2              pyh41d4057_0    conda-forge
     setuptools                68.2.2             pyhd8ed1ab_0    conda-forge
     shapely                   2.0.2           py310h7dcad9a_0    conda-forge
     simpervisor               1.0.0              pyhd8ed1ab_0    conda-forge
     six                       1.16.0             pyh6c4a22f_0    conda-forge
     snappy                    1.1.10               h9fff704_0    conda-forge
     sniffio                   1.3.0              pyhd8ed1ab_0    conda-forge
     sortedcontainers          2.4.0              pyhd8ed1ab_0    conda-forge
     soupsieve                 2.5                pyhd8ed1ab_1    conda-forge
     spdlog                    1.11.0               h9b3ece8_1    conda-forge
     sqlite                    3.44.0               h2c6b66d_0    conda-forge
     stack_data                0.6.2              pyhd8ed1ab_0    conda-forge
     streamz                   0.6.4              pyh6c4a22f_0    conda-forge
     svt-av1                   1.7.0                h59595ed_0    conda-forge
     tblib                     2.0.0              pyhd8ed1ab_0    conda-forge
     terminado                 0.18.0             pyh0d859eb_0    conda-forge
     threadpoolctl             3.2.0              pyha21a80b_0    conda-forge
     tifffile                  2023.9.26          pyhd8ed1ab_0    conda-forge
     tiledb                    2.16.3               h8c794c1_3    conda-forge
     tinycss2                  1.2.1              pyhd8ed1ab_0    conda-forge
     tk                        8.6.13          noxft_h4845f30_101    conda-forge
     toolz                     0.12.0             pyhd8ed1ab_0    conda-forge
     tornado                   6.3.3           py310h2372a71_1    conda-forge
     tqdm                      4.66.1             pyhd8ed1ab_0    conda-forge
     traitlets                 5.13.0             pyhd8ed1ab_0    conda-forge
     treelite                  3.9.1           py310h4a6579d_0    conda-forge
     treelite-runtime          3.9.1                    pypi_0    pypi
     types-python-dateutil     2.8.19.14          pyhd8ed1ab_0    conda-forge
     typing-extensions         4.8.0                hd8ed1ab_0    conda-forge
     typing_extensions         4.8.0              pyha770c72_0    conda-forge
     typing_utils              0.1.0              pyhd8ed1ab_0    conda-forge
     tzcode                    2023c                h0b41bf4_0    conda-forge
     tzdata                    2023c                h71feb2d_0    conda-forge
     uc-micro-py               1.0.1              pyhd8ed1ab_0    conda-forge
     ucx                       1.14.1               h195a15c_5    conda-forge
     ucx-proc                  1.0.0                       gpu    rapidsai
     ucx-py                    0.34.00         py310_231011_g17dceab_0    rapidsai
     unicodedata2              15.1.0          py310h2372a71_0    conda-forge
     uri-template              1.3.0              pyhd8ed1ab_0    conda-forge
     uriparser                 0.9.7                hcb278e6_1    conda-forge
     urllib3                   1.26.18            pyhd8ed1ab_0    conda-forge
     wcwidth                   0.2.10             pyhd8ed1ab_0    conda-forge
     webcolors                 1.13               pyhd8ed1ab_0    conda-forge
     webencodings              0.5.1              pyhd8ed1ab_2    conda-forge
     websocket-client          1.6.4              pyhd8ed1ab_0    conda-forge
     websockets                10.4            py310h5764c6d_1    conda-forge
     wheel                     0.41.3             pyhd8ed1ab_0    conda-forge
     xarray                    2023.10.1          pyhd8ed1ab_0    conda-forge
     xerces-c                  3.2.4                hac6953d_3    conda-forge
     xgboost                   1.7.6           rapidsai_py310h1395376_2310    rapidsai
     xorg-kbproto              1.0.7             h7f98852_1002    conda-forge
     xorg-libice               1.1.1                hd590300_0    conda-forge
     xorg-libsm                1.2.4                h7391055_0    conda-forge
     xorg-libx11               1.8.7                h8ee46fc_0    conda-forge
     xorg-libxau               1.0.11               hd590300_0    conda-forge
     xorg-libxdmcp             1.1.3                h7f98852_0    conda-forge
     xorg-libxext              1.3.4                h0b41bf4_2    conda-forge
     xorg-libxrender           0.9.11               hd590300_0    conda-forge
     xorg-renderproto          0.11.1            h7f98852_1002    conda-forge
     xorg-xextproto            7.3.0             h0b41bf4_1003    conda-forge
     xorg-xproto               7.0.31            h7f98852_1007    conda-forge
     xyzservices               2023.10.1          pyhd8ed1ab_0    conda-forge
     xz                        5.2.6                h166bdaf_0    conda-forge
     yaml                      0.2.5                h7f98852_2    conda-forge
     yarl                      1.9.2           py310h2372a71_1    conda-forge
     zeromq                    4.3.5                h59595ed_0    conda-forge
     zfp                       1.0.0                h59595ed_4    conda-forge
     zict                      3.0.0              pyhd8ed1ab_0    conda-forge
     zipp                      3.17.0             pyhd8ed1ab_0    conda-forge
     zlib                      1.2.13               hd590300_5    conda-forge
     zlib-ng                   2.0.7                h0b41bf4_0    conda-forge
     zstd                      1.5.5                hfc55251_0    conda-forge

</pre></details>
shwina commented 11 months ago

Is this a typo perhaps? You have %load_ext pd.pandas (not %load_ext cudf.pandas).

bagheriali2001 commented 11 months ago

Sorry, It was a typo :( At first, I tried to use cudf itself, but it had some issues with floats and stuff, then I found out about this method and after adding it I replaced all cudf with pd and mistakenly used pd.pandas instead of cudf.pandas

shwina commented 11 months ago

Ah yeah I figured - it definitely looked like the result of a Find-and-Replace. Glad it was an easy fix!