ntucllab / libact

Pool-based active learning in Python
http://libact.readthedocs.org/
BSD 2-Clause "Simplified" License
777 stars 175 forks source link

libact on colab #151

Closed terry07 closed 5 years ago

terry07 commented 6 years ago

Hello everyone,

i would like to ask if a proper installation of libact on colab platform is feasible?

Thanks for your help.

chkoar commented 6 years ago

In general you can install packages using the command !pip install package_name from a code cell. Assuming that you have already install the libact dependencies you could try !pip install libact.

yangarbiter commented 6 years ago

I am able to install it with these commands

!apt-get install build-essential gfortran libatlas-base-dev liblapacke-dev python3-dev
!pip --no-cache-dir install Cython
!pip --no-cache-dir install libact
terry07 commented 6 years ago

Thank you guys !!