@@ -14,7 +14,7 @@ msgid ""
1414msgstr ""
1515"Project-Id-Version : Python 3.9\n "
1616"Report-Msgid-Bugs-To : \n "
17- "POT-Creation-Date : 2021-01-01 05:02 +0000\n "
17+ "POT-Creation-Date : 2021-04-14 06:01 +0000\n "
1818"PO-Revision-Date : 2017-02-16 23:41+0000\n "
1919"
Last-Translator :
KaMingChung <[email protected] >, 2020\n "
2020"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
@@ -153,35 +153,29 @@ msgid ""
153153"You can install, upgrade, and remove packages using a program called "
154154":program:`pip`. By default ``pip`` will install packages from the Python "
155155"Package Index, <https://pypi.org>. You can browse the Python Package Index "
156- "by going to it in your web browser, or you can use ``pip``'s limited search "
157- "feature:"
156+ "by going to it in your web browser."
158157msgstr ""
159- "你可以使用一个名为 :program:`pip` 的程序来安装、升级和移除软件包。默认情况下 ``pip`` 将从 Python Package "
160- "Index <https://pypi.org> 安装软件包。你可以在浏览器中访问 Python Package Index 或是使用 ``pip`` "
161- "受限的搜索功能:"
162158
163- #: ../../tutorial/venv.rst:111
159+ #: ../../tutorial/venv.rst:100
164160msgid ""
165- "``pip`` has a number of subcommands: \" search \" , \" install \" , \" uninstall \" ,"
166- " \" freeze \" , etc. (Consult the :ref:`installing-index` guide for complete "
167- "documentation for ``pip``.)"
161+ "``pip`` has a number of subcommands: \" install \" , \" uninstall \" , \" freeze \" ,"
162+ " etc. (Consult the :ref:`installing-index` guide for complete documentation "
163+ " for ``pip``.)"
168164msgstr ""
169- "``pip`` 有许多子命令:“search”、“install”、“uninstall”、“freeze”等等。(请参阅 :ref"
170- ":`installing-index` 指南以了解 ``pip`` 的完整文档。)"
171165
172- #: ../../tutorial/venv.rst:115
166+ #: ../../tutorial/venv.rst:104
173167msgid ""
174168"You can install the latest version of a package by specifying a package's "
175169"name:"
176170msgstr "您可以通过指定包的名称来安装最新版本的包:"
177171
178- #: ../../tutorial/venv.rst:126
172+ #: ../../tutorial/venv.rst:115
179173msgid ""
180174"You can also install a specific version of a package by giving the package "
181175"name followed by ``==`` and the version number:"
182176msgstr "您还可以通过提供包名称后跟 ``==`` 和版本号来安装特定版本的包:"
183177
184- #: ../../tutorial/venv.rst:137
178+ #: ../../tutorial/venv.rst:126
185179msgid ""
186180"If you re-run this command, ``pip`` will notice that the requested version "
187181"is already installed and do nothing. You can supply a different version "
@@ -191,23 +185,23 @@ msgstr ""
191185"如果你重新运行这个命令,``pip`` 会注意到已经安装了所请求的版本并且什么都不做。您可以提供不同的版本号来获取该版本,或者您可以运行 ``pip "
192186"install --upgrade`` 将软件包升级到最新版本:"
193187
194- #: ../../tutorial/venv.rst:152
188+ #: ../../tutorial/venv.rst:141
195189msgid ""
196190"``pip uninstall`` followed by one or more package names will remove the "
197191"packages from the virtual environment."
198192msgstr "``pip uninstall`` 后跟一个或多个包名称将从虚拟环境中删除包。"
199193
200- #: ../../tutorial/venv.rst:155
194+ #: ../../tutorial/venv.rst:144
201195msgid "``pip show`` will display information about a particular package:"
202196msgstr "``pip show`` 将显示有关特定包的信息:"
203197
204- #: ../../tutorial/venv.rst:172
198+ #: ../../tutorial/venv.rst:161
205199msgid ""
206200"``pip list`` will display all of the packages installed in the virtual "
207201"environment:"
208202msgstr "``pip list`` 将显示虚拟环境中安装的所有软件包:"
209203
210- #: ../../tutorial/venv.rst:184
204+ #: ../../tutorial/venv.rst:173
211205msgid ""
212206"``pip freeze`` will produce a similar list of the installed packages, but "
213207"the output uses the format that ``pip install`` expects. A common convention"
@@ -216,7 +210,7 @@ msgstr ""
216210"`pip freeze`` 将生成一个类似的已安装包列表,但输出使用 ``pip install`` 期望的格式。一个常见的约定是将此列表放在 "
217211"``requirements.txt`` 文件中:"
218212
219- #: ../../tutorial/venv.rst:196
213+ #: ../../tutorial/venv.rst:185
220214msgid ""
221215"The ``requirements.txt`` can then be committed to version control and "
222216"shipped as part of an application. Users can then install all the necessary"
@@ -225,7 +219,7 @@ msgstr ""
225219"然后可以将 ``requirements.txt`` 提交给版本控制并作为应用程序的一部分提供。然后用户可以使用 ``install -r`` "
226220"安装所有必需的包:"
227221
228- #: ../../tutorial/venv.rst:213
222+ #: ../../tutorial/venv.rst:202
229223msgid ""
230224"``pip`` has many more options. Consult the :ref:`installing-index` guide "
231225"for complete documentation for ``pip``. When you've written a package and "
0 commit comments