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

Резултати

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

Пребарај: #mandeladay2025

当前筛选 #mandeladay2025清除筛选
Russian Consulate in Cape Town

@rusconct · Post #2843 · 18.07.2025 г., 17:30

🎙 Address by Ambassador of Russia to South Africa Roman Ambarov on the occasion of Mandela Day (July 18,2025) 💬 Dear friends, On July 18, we celebrate #MandelaDay – a holiday officially declared by the United Nations to honor the legacy of the South African statesman and one of the most outstanding champions of human rights, Nelson Mandela. The name Mandela is, without exaggeration, familiar to every person living in the former Soviet republics. For two decades, the slogan “Freedom for Mandela!” echoed through the media and peaceful demonstrations, while our country remained the only major power that consistently refused to engage with the criminal racist regime. 👉 The Soviet Union not only provided substantial financial support to the South African liberation movement but also assisted in training military personnel. Nelson Mandela praised #RussiaSouthAfrica ties in the times of the struggle against apartheid: "In a difficult time, Russia became a second home for many of us. Hundreds of young South Africans received an education here — an opportunity denied to them in their own country. Many of our cadres received military training that turned them into skilled fighters for freedom and justice. <...> For the help in liberating the entire South African nation from an inhumane system, we say from the bottom of our hearts: 'Spasibo bolshoe!'" [Thank you very much in Russian]. The friendship forged in those challenging times for South Africans continues to live on between our nations today — thanks in no small part to Nelson Mandela himself. At the heart of Mandela Day, as established by the UN, lies a principle of action, not words – people are encouraged to perform acts of charity and help those in need. The Russian Embassy in South Africa fully embraces this spirit: as part of this commemorative occasion, Russian diplomats will provide assistance and support to three South African children social facilities. 🤝 I extend my warmest congratulations to all our South African friends on this special day and wish you well-being, prosperity, and strength in pursuing your ideals. #MandelaDay2025