Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cf8b761

Browse files
[po] auto sync
1 parent aec8d34 commit cf8b761

2 files changed

Lines changed: 5886 additions & 5873 deletions

File tree

tutorial/venv.po

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.8\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2021-01-01 16:06+0000\n"
15+
"POT-Creation-Date: 2021-04-14 17:03+0000\n"
1616
"PO-Revision-Date: 2020-05-30 12:17+0000\n"
1717
"Last-Translator: Freesand Leo <[email protected]>, 2020\n"
1818
"Language-Team: Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n"
@@ -150,35 +150,29 @@ msgid ""
150150
"You can install, upgrade, and remove packages using a program called "
151151
":program:`pip`. By default ``pip`` will install packages from the Python "
152152
"Package Index, <https://pypi.org>. You can browse the Python Package Index "
153-
"by going to it in your web browser, or you can use ``pip``'s limited search "
154-
"feature:"
153+
"by going to it in your web browser."
155154
msgstr ""
156-
"你可以使用一个名为 :program:`pip` 的程序来安装、升级和移除软件包。默认情况下 ``pip`` 将从 Python Package "
157-
"Index <https://pypi.org> 安装软件包。你可以在浏览器中访问 Python Package Index 或是使用 ``pip`` "
158-
"受限的搜索功能:"
159155

160-
#: ../../tutorial/venv.rst:111
156+
#: ../../tutorial/venv.rst:100
161157
msgid ""
162-
"``pip`` has a number of subcommands: \"search\", \"install\", \"uninstall\","
163-
" \"freeze\", etc. (Consult the :ref:`installing-index` guide for complete "
164-
"documentation for ``pip``.)"
158+
"``pip`` has a number of subcommands: \"install\", \"uninstall\", \"freeze\","
159+
" etc. (Consult the :ref:`installing-index` guide for complete documentation"
160+
" for ``pip``.)"
165161
msgstr ""
166-
"``pip`` 有许多子命令:“search”、“install”、“uninstall”、“freeze”等等。(请参阅 :ref"
167-
":`installing-index` 指南以了解 ``pip`` 的完整文档。)"
168162

169-
#: ../../tutorial/venv.rst:115
163+
#: ../../tutorial/venv.rst:104
170164
msgid ""
171165
"You can install the latest version of a package by specifying a package's "
172166
"name:"
173167
msgstr "您可以通过指定包的名称来安装最新版本的包:"
174168

175-
#: ../../tutorial/venv.rst:126
169+
#: ../../tutorial/venv.rst:115
176170
msgid ""
177171
"You can also install a specific version of a package by giving the package "
178172
"name followed by ``==`` and the version number:"
179173
msgstr "您还可以通过提供包名称后跟 ``==`` 和版本号来安装特定版本的包:"
180174

181-
#: ../../tutorial/venv.rst:137
175+
#: ../../tutorial/venv.rst:126
182176
msgid ""
183177
"If you re-run this command, ``pip`` will notice that the requested version "
184178
"is already installed and do nothing. You can supply a different version "
@@ -188,23 +182,23 @@ msgstr ""
188182
"如果你重新运行这个命令,``pip`` 会注意到已经安装了所请求的版本并且什么都不做。您可以提供不同的版本号来获取该版本,或者您可以运行 ``pip "
189183
"install --upgrade`` 将软件包升级到最新版本:"
190184

191-
#: ../../tutorial/venv.rst:152
185+
#: ../../tutorial/venv.rst:141
192186
msgid ""
193187
"``pip uninstall`` followed by one or more package names will remove the "
194188
"packages from the virtual environment."
195189
msgstr "``pip uninstall`` 后跟一个或多个包名称将从虚拟环境中删除包。"
196190

197-
#: ../../tutorial/venv.rst:155
191+
#: ../../tutorial/venv.rst:144
198192
msgid "``pip show`` will display information about a particular package:"
199193
msgstr "``pip show`` 将显示有关特定包的信息:"
200194

201-
#: ../../tutorial/venv.rst:172
195+
#: ../../tutorial/venv.rst:161
202196
msgid ""
203197
"``pip list`` will display all of the packages installed in the virtual "
204198
"environment:"
205199
msgstr "``pip list`` 将显示虚拟环境中安装的所有软件包:"
206200

207-
#: ../../tutorial/venv.rst:184
201+
#: ../../tutorial/venv.rst:173
208202
msgid ""
209203
"``pip freeze`` will produce a similar list of the installed packages, but "
210204
"the output uses the format that ``pip install`` expects. A common convention"
@@ -213,7 +207,7 @@ msgstr ""
213207
"`pip freeze`` 将生成一个类似的已安装包列表,但输出使用 ``pip install`` 期望的格式。一个常见的约定是将此列表放在 "
214208
"``requirements.txt`` 文件中:"
215209

216-
#: ../../tutorial/venv.rst:196
210+
#: ../../tutorial/venv.rst:185
217211
msgid ""
218212
"The ``requirements.txt`` can then be committed to version control and "
219213
"shipped as part of an application. Users can then install all the necessary"
@@ -222,7 +216,7 @@ msgstr ""
222216
"然后可以将 ``requirements.txt`` 提交给版本控制并作为应用程序的一部分提供。然后用户可以使用 ``install -r`` "
223217
"安装所有必需的包:"
224218

225-
#: ../../tutorial/venv.rst:213
219+
#: ../../tutorial/venv.rst:202
226220
msgid ""
227221
"``pip`` has many more options. Consult the :ref:`installing-index` guide "
228222
"for complete documentation for ``pip``. When you've written a package and "

0 commit comments

Comments
 (0)