简体   繁体   中英

How to install python dependency when using google-cloud-ml-engine notebook?

I am on google-cloud-ml notebook. Trying to install pandas_ml in order to import it.

I read https://cloud.google.com/ml-engine/docs/notebooks/dependencies tried both options (terminal and a separate installation notebook). None of those solutions work for me

#either
pip install pandas_ml #terminal
#or
!pip install pandas_ml #notebook

Solved! since I'm using Python 3.5 I had to use pip3 instead of pip

!pip will install your packages on the system level and not in your notebook kernel. Try this instead:

import sys
!{sys.executable} -m pip3 install pandas_ml

Eventually, Google MLE notebooks will support %pip .

More information can be found on Jake VanderPlas's blog: Installing Python Packages from a Jupyter Notebook .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM