@@ -10,7 +10,7 @@ msgid ""
10
10
msgstr ""
11
11
"Project-Id-Version :Python 3.12\n "
12
12
"Report-Msgid-Bugs-To :\n "
13
- "POT-Creation-Date :2023-08-18 00:03+0000 \n "
13
+ "POT-Creation-Date :2024-09-03 11:11+0800 \n "
14
14
"PO-Revision-Date :2022-06-27 09:37+0800\n "
15
15
"Last-Translator :Adrian Liaw <adrianliaw2000@gmail.com>\n "
16
16
"Language-Team :Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -180,6 +180,10 @@ msgstr ""
180
180
"以下指令將從 Python 套件索引安裝一個模組的最新版本及其依賴套件 "
181
181
"(dependencies): ::"
182
182
183
+ #: ../../installing/index.rst:84
184
+ msgid "python -m pip install SomePackage"
185
+ msgstr "python -m pip install SomePackage"
186
+
183
187
#: ../../installing/index.rst:88
184
188
msgid ""
185
189
"For POSIX users (including macOS and Linux users), the examples in this "
@@ -208,6 +212,12 @@ msgstr ""
208
212
"的比較運算子,或某些可被 shell 所解釋的其他特殊字元時,套件名稱與版本編號應該"
209
213
"要放在雙引號內: ::"
210
214
215
+ #: ../../installing/index.rst:100
216
+ msgid ""
217
+ "python -m pip install SomePackage==1.0.4 # specific version\n"
218
+ "python -m pip install\" SomePackage>=1.0.4\" # minimum version"
219
+ msgstr ""
220
+
211
221
#: ../../installing/index.rst:103
212
222
msgid ""
213
223
"Normally, if a suitable module is already installed, attempting to install "
@@ -217,6 +227,10 @@ msgstr ""
217
227
"通常,如果一個合適的模組已被安裝,嘗試再次安裝它將不會有任何效果。要升級現有"
218
228
"的模組就必須明確地請求: ::"
219
229
230
+ #: ../../installing/index.rst:107
231
+ msgid "python -m pip install --upgrade SomePackage"
232
+ msgstr "python -m pip install --upgrade SomePackage"
233
+
220
234
#: ../../installing/index.rst:109
221
235
msgid ""
222
236
"More information and resources regarding ``pip`` and its capabilities can be "
@@ -320,6 +334,14 @@ msgstr ""
320
334
"在 Linux、macOS 以及其他 POSIX 系統中,使用帶有版本編號的 Python 指令並結合 "
321
335
"``-m`` 開關參數 (switch),來運行 ``pip`` 的適當副本: ::"
322
336
337
+ #: ../../installing/index.rst:171
338
+ msgid ""
339
+ "python2 -m pip install SomePackage # default Python 2\n"
340
+ "python2.7 -m pip install SomePackage # specifically Python 2.7\n"
341
+ "python3 -m pip install SomePackage # default Python 3\n"
342
+ "python3.4 -m pip install SomePackage # specifically Python 3.4"
343
+ msgstr ""
344
+
323
345
#: ../../installing/index.rst:176
324
346
msgid "Appropriately versioned ``pip`` commands may also be available."
325
347
msgstr "使用帶有合適版本編號的 ``pip`` 指令,也是可行的。"
@@ -332,6 +354,14 @@ msgstr ""
332
354
"在 Windows 中,使用 Python 啟動指令 ``py`` 並結合 ``-m`` 開關參數 "
333
355
"(switch): ::"
334
356
357
+ #: ../../installing/index.rst:181
358
+ msgid ""
359
+ "py -2 -m pip install SomePackage # default Python 2\n"
360
+ "py -2.7 -m pip install SomePackage # specifically Python 2.7\n"
361
+ "py -3 -m pip install SomePackage # default Python 3\n"
362
+ "py -3.4 -m pip install SomePackage # specifically Python 3.4"
363
+ msgstr ""
364
+
335
365
#: ../../installing/index.rst:195
336
366
msgid "Common installation issues"
337
367
msgstr "常見的安裝問題"
@@ -370,6 +400,10 @@ msgid ""
370
400
"fix is::"
371
401
msgstr "``pip`` 沒有預設被安裝也是有可能的。一個潛在的解法是: ::"
372
402
403
+ #: ../../installing/index.rst:215
404
+ msgid "python -m ensurepip --default-pip"
405
+ msgstr "python -m ensurepip --default-pip"
406
+
373
407
#: ../../installing/index.rst:217
374
408
msgid ""
375
409
"There are also additional resources for `installing pip. <https://packaging."