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

Резултати

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

Пребарај: #solidaritywithpalestine

当前筛选 #solidaritywithpalestine清除筛选
Freedom Flotilla Coalition

@FFC_official_channel · Post #595 · 16.07.2025 г., 11:46

Robert Martin is sailing to Gaza aboard the ‘Handala’. He reminds us that breaking Israel’s illegal siege on Gaza is the most important and urgent act that needs to be undertaken today. For Robert, joining the flotilla is a statement to the Palestinian people that they have not been forgotten as they endure a genocide while under brutal occupation - in spite of the consenting and complicit silence of the media and political establishments. For Robert, joining the flotilla is also a testament to posterity, and to future generations, that there were people who chose to act. “The world has woken up. Things are changing and I cannot wait for the day that there is a free Palestine.” Keep ‘Handala’ safe. End Israel’s Siege. #FreedomFlotilla#BreakIsraelsSiege#BreakTheSiege#SailToGaza#WomenAgainstBlockade#Handala#SolidarityWithPalestine

Freedom Flotilla Coalition

@FFC_official_channel · Post #584 · 12.07.2025 г., 11:11

At 70 years old, Vigdis Bjorvand from Norway is sailing to Gaza aboard 'Handala' to help break Israel's illegal siege - a journey she's been waiting for for years. A Palestine activist since 1978, Vigdis says she never wants her grandchild to say, “Grandma, you didn’t do anything.” She first joined 'Handala' in 2023, which did not manage to sail to Gaza, and tried again with 'Conscience' earlier this year. Now, she’s back on board, determined to deliver aid, medicine and solidarity to Palestinians in Gaza. As governments remain silent, Vigdis stands with the Palestinian people. Keep Vigdis safe. Keep 'Handala' safe. And help end Israel's illegal siege and genocide of Gaza. #FreedomFlotilla#BreakIsraelsSiege#BreakTheSiege#SailToGaza#WomenAgainstBlockade#Handala#SolidarityWithPalestine