@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
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
Пребарај: #getachew
@borkena · Post #5673 · 01.01.2026 г., 15:18
Getachew Reda Interview Part II. Watch. https://borkena.com/2026/01/01/ethiopia-getachew-reda-interview-part-ii/#Ethiopia#TPLF#Tigray#Getachew#Eritrea
@borkena · Post #5406 · 30.11.2025 г., 14:10
Mehdi and Getachew on Al Jazeera: Abiy as loser while TPLF Emerges as the Clear Winner. Read more. https://borkena.com/2025/11/29/ethiopia-mehdi-and-getachew-on-al-jazeera-abiy-as-loser-while-tplf-emerges-as-the-clear-winner/#Ethiopia#Mehdi#Getachew#politics#EthiopianPolitics
@addisstandardeng · Post #21084 · 15.01.2026 г., 14:58
News: #US Ambassador to #Ethiopia visits #Humera accompanied by Getachew Reda amid ongoing challenges in Western Tigray US Ambassador to Ethiopia Ervin Massinga on Thursday morning arrived in Humera town, #Western_Tigray, accompanied by #Getachew Reda, Advisor on Horn of Africa Affairs to Prime Minister Abiy Ahmed. According to Amhara regional media, the Ambassador was received by Ashete Demlew, an administrator installed by the #Amhara regional government. The visit is reported to include meetings with residents of Humera and inspections of health facilities in the town. Humera, located in Western Tigray, remains at the center of unresolved political, security, & humanitarian challenges in the aftermath of the two-year war in Tigray. In a message shared by the US Embassy in Addis Abeba on Thursday, Ambassador Massinga said he had witnessed firsthand the hardships facing residents of Humera. “The needs are urgent — damaged infrastructure, limited medical... Read more: https://addisstandard.com/?p=54578