TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #201 · 13 јан.

Мы уже знаем, что на текущую сессию интерпретатора изменение PYTHONPATH никак не повлияет. Но если вы запустите дочерний процесс, то он унаследует окружение текущего процесса, а значит и изменения в любых переменных будут на него влиять. Вот небольшой пример: Объявляем переменную user@host:~$ export PYTHONPATH=/path1 Запускаем интерпретатор user@host:~$ python3 Проверим что в sys.path >>> import sys >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Добавляем что-то в переменную >>> import os >>> os.emviron['PYTHONPATH'] = '/path1:/path2' >>> print(sys.path) ['', '/path1', '/usr/lib/...', ...] Изменений нет. Но давайте запустим дочерний процесс и посмотрим там >>> os.system('python3') # теперь мы находимся в другом процессе >>> import sys >>> print(sys.path) ['', '/path1', '/path2', '/usr/lib/...', ...] Тоже самое будет и с subprocess, так как по умолчанию текущее окружение тоже наследуется. >>> import subprocess >>> subprocess.call(['python3', '-c', 'import sys;print(sys.path)']) ['', '/path1', '/path2', '/usr/lib/...', ...] ______________________ Лучшей практикой является передача энвайронмента явно через аргумент env! import subprocess subprocess.call(cmd, env={'PYTHONPATH': '...'}) Это поможет точно понимать какое окружение будет у запускаемого процесса и при этом не изменять окружение текущего процесса. #basic

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #navalmines

当前筛选 #navalmines清除筛选
Crypto M - Crypto News

@CryptoM · Post #64462 · 09.04.2026 г., 01:14

🚀 Iran Warns of Naval Mines in Strait of Hormuz Amid Ongoing Conflict On April 9, the Iranian Revolutionary Guard Corps Navy issued a statement warning of potential anti-ship mines in the main traffic areas of the Strait of Hormuz due to recent conflicts. According to BlockBeats, vessels planning to navigate through the strait are advised to coordinate with the Revolutionary Guard Navy and follow an alternative route to avoid mines. The provided map indicates that the alternative route requires ships to enter and exit the Persian Gulf from the north and south sides of Larak Island in the northern part of the strait. On April 8, the Iranian Ports and Maritime Organization released a safety navigation map for the Strait of Hormuz, advising vessels to adhere to shipping safety principles to avoid mines. The organization stated that from February 28 to April 8, there have been ongoing conflicts in the Persian Gulf and the Strait of Hormuz, with potential anti-ship mines present in the main channel of the strait. #Iran#StraitOfHormuz#NavalMines#RevolutionaryGuard#PersianGulf#ShippingSafety#AntiShipMines#Conflict#MaritimeSafety