Skip to content Skip to sidebar Skip to footer

Import From Python Library On Bluemix

I need to use the following imports in a Jupyter notebook on IBM Bluemix import swiftclient from keystoneclient import client If I were on my local workstation, I could use pip to

Solution 1:

You need to use the --user flag, because as user you do not root access to the system.

Try the following code:

!pip install --user python-swiftclient
!pip install --user python-keystoneclient

However, I can see from you error messages that you service instance is quite old. It would be better, if you switch to the new offering "IBM Data Science Experience": http://datascience.ibm.com/

Post a Comment for "Import From Python Library On Bluemix"