Advertisement
Guest User

Untitled

a guest
Oct 9th, 2015
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. [d@Orlin blog]$ python
  2. Python 2.7.10 (default, Sep 24 2015, 17:50:09)
  3. [GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> from PIL import Image
  6. >>>
  7. [d@Orlin blog]$ python3
  8. Python 3.4.2 (default, Jul 9 2015, 17:24:30)
  9. [GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux
  10. Type "help", "copyright", "credits" or "license" for more information.
  11. >>> from PIL import Image
  12. Traceback (most recent call last):
  13. File "<stdin>", line 1, in <module>
  14. ImportError: cannot import name 'Image'
  15. >>> import PIL
  16. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement