Untitled
# It's a good idea to ensure you're running the latest version of any libraries you need. # `!pip install -Uqq <libraries>` upgrades to the latest version of <libraries> # NB: You can safely ignore any warnings or errors pip spits out about running as root or incompatibilities import os iskaggle = os.environ.get('KAGGLE_KERNEL_RUN_TYPE', '') if iskaggle: !pip install -Uqq fastai 'duckduckgo_search>=6.2'
Leave a Comment