cudf
プロジェクトでライブラリを使用し、ラピッドをインストールしたいと考えています。それはうまくインストールされました。アウトプリントからいくつかの文字列があります
Starting to prep Colab for install RAPIDS Version 0.14 stable
Checking for GPU type:
***********************************************************************
Woo! Your instance has the right kind of GPU, a 'Tesla T4'!
***********************************************************************
************************************************
Your Google Colab instance has RAPIDS installed!
************************************************
しかし、しようとするとimport cudf
、私は得る
ModuleNotFoundError: No module named 'cudf'
インストールスクリプトを実行するときに、互換性のないpythonバージョンに接続できる可能性があるという提案があります
# Install RAPIDS
!git clone https://github.com/rapidsai/rapidsai-csp-utils.git
!bash rapidsai-csp-utils/colab/rapids-colab.sh stable
import sys, os
dist_package_index = sys.path.index('/usr/local/lib/python3.6/dist-packages')
sys.path = sys.path[:dist_package_index] + ['/usr/local/lib/python3.6/site-packages'] + sys.path[dist_package_index:]
sys.path
exec(open('rapidsai-csp-utils/colab/update_modules.py').read(), globals())
エラーが発生しました
ValueError: '/usr/local/lib/python3.6/dist-packages' is not in list
だから私はどこでもに変更python3.6
しました。python3.7
とにかく、どうすればこれを修正できますか?