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

Резултати

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

Пребарај: #seychelles

当前筛选 #seychelles清除筛选
Voyage.Travel.Tourism

@VOYAGE · Post #1008 · 30.06.2024 г., 12:14

🗺Seychelles🇸🇨 Anse Georgette is a remote beach on the northwest coast of Praslin Island. The shore features pristine white sand and round granite boulders. The beach is long, wide, and secluded, with almost no modern amenities. #Seychelles @voyage

Hashtags

RT en français

@RTenfrancais · Post #79820 · 22.04.2026 г., 14:15

🇷🇺🇸🇨#Russie–#Seychelles : accord culturel La Russie et les Seychelles ont signé un mémorandum de coopération culturelle entre leurs ministères respectifs, afin de structurer et d'élargir leurs échanges. L’accord prévoit le développement de projets communs dans les domaines du patrimoine, des musées et des événements internationaux, dans un contexte où les échanges artistiques sont déjà actifs entre les deux pays. La partie seychelloise s’est dite intéressée par l’expérience russe en matière de promotion culturelle et de préservation du patrimoine. Crédit photo : Service de presse du ministère russe de la Culture RT en français • Osez questionner !

RT en français

@RTenfrancais · Post #79897 · 23.04.2026 г., 12:48

⏺Patrick #Herminie, président de la république des #Seychelles, évoque la coopération de son pays avec les agences de voyage russes afin d’attirer les touristes aux Seychelles. RT en français • Osez questionner !

AI match predictions

@ai_match_prediction · Post #11211 · 29.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-29 13:00 UTC South Sudan vs. Djibouti Predicted outcome: South Sudan❌ Predicted score: 4:0 Actual: Djibouti 0:1 #SouthSudan#Djibouti 2026-03-29 15:00 UTC Lesotho vs. Seychelles Predicted outcome: Draw❌ Predicted score: 0:0 Actual: Lesotho 2:1 #Lesotho#Seychelles #Football#AfricaCupofNations

AI match predictions

@ai_match_prediction · Post #11186 · 26.03.2026 г., 09:05

Africa Cup of Nations - Qualification🌍 2026-03-26 13:00 UTC Djibouti vs. South Sudan Predicted outcome: South Sudan✅ Predicted score: 1:3 Actual: South Sudan 0:4 #Djibouti#SouthSudan 2026-03-26 14:00 UTC Seychelles vs. Lesotho Predicted outcome: Lesotho❌ Predicted score: 0:2 Actual: Draw 0:0 #Seychelles#Lesotho #Football#AfricaCupofNations