How to install svmutil in Jupyter notebook on Google Colaboratory?
问题 I want to use svmutil functions from https://github.com/Netflix/vmaf/tree/master/libsvm/python in my Jupyter notebook which runs on Google Colaboratory. Running import svmutil gives the following error: ModuleNotFoundError: No module named 'svmutil' How do I install this github repo in colab? 回答1: You'll need to install the library first. Here's a complete example: https://colab.research.google.com/drive/1svYMGnV7HdeqXpN15T5ajxbLijLmBeSm The key bits: # Clone the git repo. !git clone https:/