python pip install poster gives me error --> Command "python setup.py egg_info" failed with error code 1 in C:\Users\

Viewed 1920

I am using Python 3, and am not able to --> pip install poster library

I am trying to upload a file using poster. I have tried: pip install poster or easy_install poster they both fail I get an error :

print "send:", repr(value)
                ^
SyntaxError: invalid syntax

----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\...

pip install poster  also tried   

easy_install poster .  

I have also tried downloading .tar.gz and I get the same error

I have also tried : pip install --upgrade setuptools
3 Answers

Use poster3.

It is the Python3 version of poster.

For Python3 use poster3. refer this

pip install poster3
Related