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

Резултати

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

Пребарај: #yemeni

当前筛选 #yemeni清除筛选
Addis Standard

@addisstandardeng · Post #21126 · 20.01.2026 г., 05:35

#Saudi-backed #Yemeni government accuses #UAE of running secret prisons, Abu Dhabi denies claim The Saudi-backed Yemeni government accused the United Arab Emirates on Monday of running a secret prison at an airbase near the south Yemeni port city of Mukalla, an allegation denied by Abu Dhabi. The accusation fueled tensions in a deepening row between the two Gulf oil states, Saudi Arabia and the United Arab Emirates. The allegations were made by Salem Al-Khanbashi, the governor of the eastern Yemeni province of Hadramout, during a rare media trip arranged by the Saudi government which flew international journalists including a Reuters team from Riyadh to the Riyan airbase near the Yemeni city of Mukalla. https://www.reuters.com/world/middle-east/saudi-backed-tour-yemeni-officials-accuse-uae-running-secret-prisons-2026-01-19/

Addis Standard

@addisstandardeng · Post #21034 · 10.01.2026 г., 09:29

#Yemeni southern separatists in #Riyadh announce disputed disbanding of #STC -The STC, which #SaudiArabia says is backed by the #UAE, launched an offensive against Yemeni gov’t troops in December. Yemen’s main southern separatists ‍have decided to disband following talks in Saudi Arabia, the secretary-general of the organisation has said, although the announcement was dismissed by its spokesman, who called it “ridiculous”. The Southern Transitional Council (STC) Secretary-General Abdulrahman Jalal al-Subaihi said in a broadcast on Yemeni television on Friday that the dissolution of the group was taken to preserve peace and security in the south and in neighbouring countries. He praised “the measures taken by the Kingdom of Saudi Arabia and the solutions it has provided that meet the needs of the people of the South”. https://www.aljazeera.com/news/2026/1/9/yemens-separatist-southern-transitional-council-announces-its-dissolution