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

Резултати

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

Пребарај: #africacupofnations

当前筛选 #africacupofnations清除筛选
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

AI match predictions

@ai_match_prediction · Post #11195 · 27.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-27 13:00 UTC Somalia vs. Mauritius Predicted outcome: Mauritius❌ Predicted score: 0:1 Actual: Draw 0:0 #Somalia#Mauritius 2026-03-27 13:00 UTC Chad vs. Burundi Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Burundi 0:4 #Chad#Burundi 2026-03-27 16:00 UTC Sao Tome and Principe vs. Ethiopia Predicted outcome: Ethiopia✅ Predicted score: 1:2 Actual: Ethiopia 0:3 #SaoTomeandPrincipe#Ethiopia #Football#AfricaCupofNations

AI match predictions

@ai_match_prediction · Post #11226 · 31.03.2026 г., 05:05

Africa Cup of Nations - Qualification🌍 2026-03-31 13:00 UTC Ethiopia vs. Sao Tome and Principe Predicted outcome: Ethiopia✅ Predicted score: 3:1 Actual: Ethiopia 1:0 #Ethiopia#SaoTomeandPrincipe 2026-03-31 13:00 UTC Burundi vs. Chad Predicted outcome: Draw❌ Predicted score: 1:1 Actual: Burundi 4:0 #Burundi#Chad 2026-03-31 14:00 UTC Eswatini vs. Eritrea Predicted outcome: Eswatini❌ Predicted score: 2:1 Actual: Eritrea 1:2 #Eswatini#Eritrea 2026-03-31 15:00 UTC Mauritius vs. Somalia Predicted outcome: Somalia❌ Predicted score: 0:1 Actual: Draw 0:0 #Mauritius#Somalia #Football#AfricaCupofNations