11# SOME DESCRIPTIVE TITLE.
2- # Copyright (C) 2001-2025 , Python Software Foundation
2+ # Copyright (C) 2001-2026 , Python Software Foundation
33# This file is distributed under the same license as the Python package.
44# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55#
66# Translators:
77# python-doc bot, 2025
8+ # Dmitry Luschan, 2026
89#
910#, fuzzy
1011msgid ""
1112msgstr ""
1213"Project-Id-Version : Python 3.13\n "
1314"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-01-03 14:16 +0000\n "
15+ "POT-Creation-Date : 2026-08-11 16:34 +0000\n "
1516"PO-Revision-Date : 2025-09-15 01:05+0000\n "
16- "Last-Translator : python-doc bot, 2025 \n "
17+ "Last-Translator : Dmitry Luschan, 2026 \n "
1718"Language-Team : Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n "
1819"MIME-Version : 1.0\n "
1920"Content-Type : text/plain; charset=UTF-8\n "
@@ -153,43 +154,52 @@ msgid ""
153154msgstr ""
154155
155156#: ../../tutorial/venv.rst:91
157+ msgid ""
158+ "Note that the activated virtual environment does not alter the "
159+ "``PYTHONPATH`` variable in any way. This may lead to unexpected results if "
160+ "the path includes references to code which is incompatible with the Python "
161+ "version the virtual environment is using. The best practice is to ``unset "
162+ "PYTHONPATH`` in bash or the equivalent for the shell you are using."
163+ msgstr ""
164+
165+ #: ../../tutorial/venv.rst:96
156166msgid "To deactivate a virtual environment, type::"
157167msgstr ""
158168
159- #: ../../tutorial/venv.rst:93
169+ #: ../../tutorial/venv.rst:98
160170msgid "deactivate"
161171msgstr ""
162172
163- #: ../../tutorial/venv.rst:95
173+ #: ../../tutorial/venv.rst:100
164174msgid "into the terminal."
165175msgstr ""
166176
167- #: ../../tutorial/venv.rst:98
177+ #: ../../tutorial/venv.rst:103
168178msgid "Managing Packages with pip"
169179msgstr ""
170180
171- #: ../../tutorial/venv.rst:100
181+ #: ../../tutorial/venv.rst:105
172182msgid ""
173183"You can install, upgrade, and remove packages using a program called "
174184":program:`pip`. By default ``pip`` will install packages from the `Python "
175185"Package Index <https://pypi.org>`_. You can browse the Python Package Index"
176186" by going to it in your web browser."
177187msgstr ""
178188
179- #: ../../tutorial/venv.rst:105
189+ #: ../../tutorial/venv.rst:110
180190msgid ""
181191"``pip`` has a number of subcommands: \" install\" , \" uninstall\" , \" freeze\" ,"
182192" etc. (Consult the :ref:`installing-index` guide for complete documentation"
183193" for ``pip``.)"
184194msgstr ""
185195
186- #: ../../tutorial/venv.rst:109
196+ #: ../../tutorial/venv.rst:114
187197msgid ""
188198"You can install the latest version of a package by specifying a package's "
189199"name:"
190200msgstr ""
191201
192- #: ../../tutorial/venv.rst:111
202+ #: ../../tutorial/venv.rst:116
193203msgid ""
194204"(tutorial-env) $ python -m pip install novas\n"
195205"Collecting novas\n"
@@ -199,13 +209,13 @@ msgid ""
199209"Successfully installed novas-3.1.1.3"
200210msgstr ""
201211
202- #: ../../tutorial/venv.rst:120
212+ #: ../../tutorial/venv.rst:125
203213msgid ""
204214"You can also install a specific version of a package by giving the package "
205215"name followed by ``==`` and the version number:"
206216msgstr ""
207217
208- #: ../../tutorial/venv.rst:123
218+ #: ../../tutorial/venv.rst:128
209219msgid ""
210220"(tutorial-env) $ python -m pip install requests==2.6.0\n"
211221"Collecting requests==2.6.0\n"
@@ -214,15 +224,15 @@ msgid ""
214224"Successfully installed requests-2.6.0"
215225msgstr ""
216226
217- #: ../../tutorial/venv.rst:131
227+ #: ../../tutorial/venv.rst:136
218228msgid ""
219229"If you re-run this command, ``pip`` will notice that the requested version "
220230"is already installed and do nothing. You can supply a different version "
221231"number to get that version, or you can run ``python -m pip install "
222232"--upgrade`` to upgrade the package to the latest version:"
223233msgstr ""
224234
225- #: ../../tutorial/venv.rst:136
235+ #: ../../tutorial/venv.rst:141
226236msgid ""
227237"(tutorial-env) $ python -m pip install --upgrade requests\n"
228238"Collecting requests\n"
@@ -233,18 +243,18 @@ msgid ""
233243"Successfully installed requests-2.7.0"
234244msgstr ""
235245
236- #: ../../tutorial/venv.rst:146
246+ #: ../../tutorial/venv.rst:151
237247msgid ""
238248"``python -m pip uninstall`` followed by one or more package names will "
239249"remove the packages from the virtual environment."
240250msgstr ""
241251
242- #: ../../tutorial/venv.rst:149
252+ #: ../../tutorial/venv.rst:154
243253msgid ""
244254"``python -m pip show`` will display information about a particular package:"
245255msgstr ""
246256
247- #: ../../tutorial/venv.rst:151
257+ #: ../../tutorial/venv.rst:156
248258msgid ""
249259"(tutorial-env) $ python -m pip show requests\n"
250260"---\n"
@@ -260,13 +270,13 @@ msgid ""
260270"Requires:"
261271msgstr ""
262272
263- #: ../../tutorial/venv.rst:166
273+ #: ../../tutorial/venv.rst:171
264274msgid ""
265275"``python -m pip list`` will display all of the packages installed in the "
266276"virtual environment:"
267277msgstr ""
268278
269- #: ../../tutorial/venv.rst:169
279+ #: ../../tutorial/venv.rst:174
270280msgid ""
271281"(tutorial-env) $ python -m pip list\n"
272282"novas (3.1.1.3)\n"
@@ -276,15 +286,15 @@ msgid ""
276286"setuptools (16.0)"
277287msgstr ""
278288
279- #: ../../tutorial/venv.rst:178
289+ #: ../../tutorial/venv.rst:183
280290msgid ""
281291"``python -m pip freeze`` will produce a similar list of the installed "
282292"packages, but the output uses the format that ``python -m pip install`` "
283293"expects. A common convention is to put this list in a ``requirements.txt`` "
284294"file:"
285295msgstr ""
286296
287- #: ../../tutorial/venv.rst:182
297+ #: ../../tutorial/venv.rst:187
288298msgid ""
289299"(tutorial-env) $ python -m pip freeze > requirements.txt\n"
290300"(tutorial-env) $ cat requirements.txt\n"
@@ -293,14 +303,14 @@ msgid ""
293303"requests==2.7.0"
294304msgstr ""
295305
296- #: ../../tutorial/venv.rst:190
306+ #: ../../tutorial/venv.rst:195
297307msgid ""
298308"The ``requirements.txt`` can then be committed to version control and "
299309"shipped as part of an application. Users can then install all the necessary"
300310" packages with ``install -r``:"
301311msgstr ""
302312
303- #: ../../tutorial/venv.rst:194
313+ #: ../../tutorial/venv.rst:199
304314msgid ""
305315"(tutorial-env) $ python -m pip install -r requirements.txt\n"
306316"Collecting novas==3.1.1.3 (from -r requirements.txt (line 1))\n"
@@ -314,7 +324,7 @@ msgid ""
314324"Successfully installed novas-3.1.1.3 numpy-1.9.2 requests-2.7.0"
315325msgstr ""
316326
317- #: ../../tutorial/venv.rst:207
327+ #: ../../tutorial/venv.rst:212
318328msgid ""
319329"``pip`` has many more options. Consult the :ref:`installing-index` guide "
320330"for complete documentation for ``pip``. When you've written a package and "
0 commit comments