Poster installation (HTTP streaming and multipart / form-data encoding)

I searched the net for instructions on how to install Poster (HTTP streaming downloading and multipart / form-data encoding) for various OS (especially Ubuntu and Windows). The official site http://atlee.ca/software/poster/ has amazing examples of scripts and examples, but says nothing about how to install the module on various operating systems. Appreciate if someone can help me with this.

+4
source share
1 answer

This is pretty simple, you can use easy_install or pip in your terminal run:

easy_install poster 

or

 pip install poster 

If you do not have easy_install or pip, install the distribution kit first:

 curl -O http://python-distribute.org/distribute_setup.py python distribute_setup.py 

I recommend using pip and read some excellent documentation . You may also need to read the python documentation on module distribution .

In the future, look for pypi . If it is on pypi, you can run the pip or easy_install command.

+4
source

All Articles