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

Резултати

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

Пребарај: #byo

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

@NEASingapore · Post #595 · 23.07.2023 г., 02:00

Can’t fit all your purchases into one reusable bag? Pack a few more, just in case! You’ll never know when you need to pick up a few things while you’re out 😊 #SayYestoWasteLess#BYO

NEA Singapore

@NEASingapore · Post #503 · 11.02.2023 г., 02:01

Reusable bags can be easily thrown into the washing machine or spot cleaned. While they do require more care, they can be reused many more times than their plastic counterparts making them better for the environment! #SayYestoWasteLess#BYO

NEA Singapore

@NEASingapore · Post #284 · 23.11.2021 г., 03:30

Instead of dining out, dabao some delicious hawker fare for elderly family members or neighbours so that they can stay home and stay safe. Remember to bring your along reusable containers to reduce single-use disposables. #BYO#SayYEStoWasteLess

NEA Singapore

@NEASingapore · Post #192 · 21.05.2021 г., 06:00

It’s time to put our reusables to its best use! Don’t forget to leave the house with reusable bottles and containers when tabao-ing your morning coffee, lunch or dinner from your favourite food stalls. #SayYEStoWasteLess#BYO

NEA Singapore

@NEASingapore · Post #696 · 31.10.2023 г., 01:01

This Halloween, make your carbon footprint less scary! 🍿 Having a spooky movie night? Bring along reusable popcorn containers and cups. 👻 Hitting a few haunted houses? Don't forget to keep hydrated with a reusable bottle. 🍭 And if you’re thinking of hitting the sweet shops, keep a reusable bag handy. #SustainableSG#BYO#BYOB

NEA Singapore

@NEASingapore · Post #669 · 13.10.2023 г., 01:02

Bring your reusable bag when you go shopping! Every action counts when it comes to saving planet Earth, and a little goes a long way when it comes to savings 💰 Show the Earth and your wallet some love! #SayYEStoWasteLess#BYO#BYOB

NEA Singapore

@NEASingapore · Post #648 · 23.09.2023 г., 01:01

Lock screen reminders are the new sticky notes. So set a trendy reminder to bring your own reusable bag before heading out! Let’s save the planet, one bag at a time 🛍#BYO#BYOB#SayYEStoWasteLess

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