Tech Tips

  1. Uncategorized
  2. 188 view

[Python]Install python urllib 2

I wrote code of a programming book.
urllib2 is needed for the code, but I couldn’t find urllib2 at pip.
So I tried to install urllib3.
$sudo apt-get install python-pip
$sudo pip install urllib3
$python
>>> import urllib3
>>> http = urllib3.PoolManager()
>>> print http.request('GET', 'http://www.google.com').data
There are some diifferences.
But, we can use same way because differences are little bit.

Uncategorized recent post

  1. Run Amazon FreeRTOS on M5Stack Core2 for AWS …

  2. Udacity Self-Driving Car Engineer Nanodegree …

  3. Install sbt 1.0.0 and run sample template

  4. Visualization of Neural Network and its Train…

  5. [Machine Learning]Created docker image includ…

関連記事

PAGE TOP