Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 833 Bytes

install.rst

File metadata and controls

43 lines (26 loc) · 833 Bytes

Install

By using pip:

$ pip install pyftpdlib

From sources:

$ git clone git@github.com:giampaolo/pyftpdlib.git
$ cd pyftpdlib
$ python3 setup.py install

You might want to run tests to make sure pyftpdlib works:

$ make test
$ make test-contrib

Additional dependencies

PyOpenSSL, to support FTPS:

$ pip install PyOpenSSL

pysendfile, if you're on UNIX, in order to speedup uploads (from server to client):

$ pip install pysendfile