blob: d60cec7820a7cf4696ef8a36ffc19f9fed3ce9d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
.section_anchor {
font-size:0px;
}
</style>
<title>Install</title>
</head><body>
<div id="wikicontent">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr>
<td class="vt" id="wikimaincol" width="100%">
<div id="wikiheader" style="margin-bottom: 1em;">
<span style="font-size: 120%; font-weight: bold;">Install</span>
<div style="font-style: italic; margin-top: 3px;">Instructions for installing pyftpdlib (for those really new to Python).</div>
</div>
<h1><a name="Requirements"></a>Requirements<a href="#Requirements" class="section_anchor">¶</a></h1><p>Python 2.3 or higher (not Python 3.x). You can get the latest 2.x stable Python release from here: <a href="http://www.python.org/download/" rel="nofollow">http://www.python.org/download/</a>. </p><h1><a name="Using_easy_install_/_setuptools"></a>Using easy_install / setuptools<a href="#Using_easy_install_/_setuptools" class="section_anchor">¶</a></h1><p>If you have <a href="http://pypi.python.org/pypi/setuptools" rel="nofollow">easy_install / setuptools</a> on your system, installing pyftpdlib is quite simple. Just run: </p><pre class="prettyprint">easy_install pyftpdlib</pre><p>This will get the most updated pyftpdlib from the Python <a href="http://pypi.python.org/pypi" rel="nofollow">pypi repository</a>, unpack it and install it automatically. </p><p>Note:
if you already have an old version of pyftpdlib installed, easy_install
will not automatically download the latest version. You can ask for a
particular version by running, for example: </p><pre class="prettyprint">easy_install.py pyftpdlib==0.3.0</pre><h1><a name="Manual_installation"></a>Manual installation<a href="#Manual_installation" class="section_anchor">¶</a></h1><p>If you have downloaded a pyftpdlib package, follow the following steps: </p><p>Unpack it (Windows users could use 7Zip, WinRar or other similar program): </p><pre class="prettyprint">tar zxvf pyftpdlib-0.3.0.tar.gz</pre><p>Change to the pyftpdlib directory: </p><pre class="prettyprint">cd pyftpdlib</pre><p>Run setup.py to install pyftpdlib. This step need to be run as root. </p><pre class="prettyprint">python setup.py install</pre><p>If you're on Windows just run: </p><pre class="prettyprint">setup.py install</pre>
</td>
</tr>
</tbody></table>
</div>
<script type="text/javascript" src="install_files/dit_scripts.js"></script>
</body></html>
|