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

Резултати

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

Пребарај: #lunarnewyear2024

当前筛选 #lunarnewyear2024清除筛选
NEA Singapore

@NEASingapore · Post #756 · 06.02.2024 г., 01:01

Embrace the Lunar New Year with fresh air and festive cheer! Visit go.gov.sg/smoking-prohibition for the list of places where smoking is prohibited. #LunarNewYear2024

NEA Singapore

@NEASingapore · Post #758 · 08.02.2024 г., 01:01

No spring cleaning is complete until you clear away all stagnant water. Let’s bring in good health and fortune, not mosquitoes. 🚫🦟 Check out more dengue prevention tips at go.gov.sg/dengue-checklist #BLOCKDengue#LunarNewYear2024

NEA Singapore

@NEASingapore · Post #767 · 19.02.2024 г., 09:31

Litter can become potential mosquito breeding habitats. Let’s #KeepSGClean and mozzie-free by binning our litter properly! If a bin is full, hold on to your litter until you find a bin that you can use! #LunarNewYear2024

NEA Singapore

@NEASingapore · Post #754 · 04.02.2024 г., 01:01

As we approach the Year of the Dragon, let’s breathe new life into our old tech! Recycle your e-waste to recover precious materials that can be used to make new products. More info at go.gov.sg/e-waste #RecycleRight#SustainableSG#TowardsZeroWaste#LunarNewYear2024

NEA Singapore

@NEASingapore · Post #750 · 01.02.2024 г., 01:05

Are the expiration dates on your condiments and other canned & bottled goods looming? Check your pantry and use up your goods before they expire. Let’s have a sustainable celebration this Lunar New Year! #SayYEStoWasteLess#SustainableSG#TowardsZeroWaste#LunarNewYear2024

12
ПретходнаСтраница 1 од 2Следна