May-14-2018, 07:46 PM
I'm using Jupyter Notebooks with version 2.7
I'm trying to import three libraries, requests, json, and jsonlines.
When I post
Can anyone tell me what's going on? Why am I getting an error message?
Thanks
I'm trying to import three libraries, requests, json, and jsonlines.
When I post
import requests import json import jsonlinesI get an error message saying
ImportErrorTraceback (most recent call last)
<ipython-input-1-8eab60077a08> in <module>()
1 import requests
2 import json
----> 3 import jsonlines
ImportError: No module named jsonlinesBut there is a jsonlines library. https://jsonlines.readthedocs.io/en/latest/Can anyone tell me what's going on? Why am I getting an error message?
Thanks
