Created
July 4, 2018 20:14
-
-
Save gilrosenthal/58e9b4f9d562d000d07d7cf0e5dbd840 to your computer and use it in GitHub Desktop.
Fast.ai Install on Google Colab
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!pip install fastai | |
!apt-get -qq install -y libsm6 libxext6 && pip install -q -U opencv-python | |
import cv2 | |
from os import path | |
from wheel.pep425tags import get_abbr_impl, get_impl_ver, get_abi_tag | |
platform = '{}{}-{}'.format(get_abbr_impl(), get_impl_ver(), get_abi_tag()) | |
accelerator = 'cu80' if path.exists('/opt/bin/nvidia-smi') else 'cpu' | |
!pip install -q http://download.pytorch.org/whl/{accelerator}/torch-0.3.0.post4-{platform}-linux_x86_64.whl torchvision | |
import torch | |
!pip install Pillow==4.0.0 | |
!pip install image | |
%matplotlib inline | |
from fastai.imports import * |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works fine for me. I add another line, which fixes
sklearn
import error as referenced by the official commit toold/fastai (0.7.0)
directory. The complete would be:Paste this script in your cell and run.