You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/shipping/packaging.rst
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Packaging your code is important.
7
7
For Python Developers
8
8
:::::::::::::::::::::
9
9
10
-
If you're writing an open source Python module, `PyPi<http://pypi.python.org>`_, more properly known as *The Cheeseshop*, is the place to host it.
10
+
If you're writing an open source Python module, `PyPI<http://pypi.python.org>`_, more properly known as *The Cheeseshop*, is the place to host it.
11
11
12
12
13
13
@@ -17,14 +17,14 @@ Pip vs. easy_install
17
17
Use pip. More details `here <http://stackoverflow.com/questions/3220404/why-use-pip-over-easy-install>`_
18
18
19
19
20
-
Personal PyPi
20
+
Personal PyPI
21
21
-------------
22
22
23
23
If you want to install packages from a source different from PyPI, (say, if
24
24
your packages are *proprietary*), you can do it by hosting a simple http server,
25
25
running from the directory which holds those packages which need to be installed.
26
26
27
-
**Showing an example is always benificial**
27
+
**Showing an example is always beneficial**
28
28
29
29
Say if you are after installing a package called MyPackage.tar.gz, and assuming this is your directory structure
30
30
@@ -39,14 +39,14 @@ Go to your command prompt and type:
39
39
$ cd archive
40
40
$ python -m SimpleHTTPServer 9000
41
41
42
-
This runs a simple http server running on port 9000 and will list down all packages(like **MyPackage**). Now you can install **MyPackage** using any python package installer. Using Pip, you would do it like:
42
+
This runs a simple http server running on port 9000 and will list all packages(like **MyPackage**). Now you can install **MyPackage** using any python package installer. Using Pip, you would do it like:
0 commit comments