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 слични објави

Пребарај: #studentexchange

当前筛选 #studentexchange清除筛选
Green University CA | Official

@centralasian_greenuniversity · Post #181 · 09.10.2025 г., 07:35

🇫🇷French Ambassador Visits Green University 📌On October 8, 2025, Green University welcomed H.E. Mr. Walid Fouque, the Ambassador of France to Uzbekistan. 💬During the meeting, exciting opportunities for cooperation were discussed — including student exchange programs with top French universities starting from 2026, visits by French experts, creation of a French Language Center, joint research projects, and internships with French companies! 💬As a next step, our university leadership has been invited to visit France this November (10–20) to kick off these partnerships and connect with universities, research centers, and industry reps. #GreenUniversity#France#InternationalCooperation#StudentExchange#StudyAbroad ✉️ [email protected] ☎️ +998 55 512 00 77 📍Location 🌐Website | 📱Telegram | 📱Instagram | 📱LinkedIn | 🟥YouTube

Green University CA | Official

@centralasian_greenuniversity · Post #1006 · 06.04.2026 г., 17:59

Green University Hosts OSCE Academy Delegation 💬Green University welcomed a delegation from the OSCE Academy in Bishkek! During the meeting, Rector Professor Bakhtiyor Pulatov and Anja Mihr discussed cooperation opportunities and reached an agreement on the Student Exchange Program. 💬 Dr. Anja Mihr delivered a presentation for students on Sustainable Development, sharing valuable insights on global challenges and opportunities for youth engagement. 🤝 This visit marks an important step in expanding international cooperation and providing students with new academic and global experiences. #GreenUniversity#OSCEAcademy#StudentExchange#SustainableDevelopment#InternationalCooperation#GlobalExperience 👉ReadMore _____________________ Green University’da YXHT Akademiyasi delegatsiyasi qabul qilindi 💬Green University Bishkekdagi YXHT Akademiyasi delegatsiyasini qabul qildi! Uchrashuv davomida professor Baxtiyor Pulatov va Anja Mihr hamkorlik imkoniyatlarini muhokama qilib, talabalar almashinuvi dasturi bo‘yicha kelishuvga erishildi. 💬 Dr. Anja Mihr talabalarga Barqaror rivojlanish (Sustainable Development) mavzusida taqdimot o‘tkazdi, global muammolar va yoshlar uchun imkoniyatlar haqida qimmatli ma’lumotlar berdi. 🤝Bu tashrif xalqaro hamkorlikni kengaytirish va talabalarimizga yangi akademik tajribalar yaratish yo‘lida muhim qadam bo‘ldi. #GreenUniversity#OSCEAcademy#TalabalarAlmashinuvi#SustainableDevelopment#XalqaroHamkorlik#GlobalTajriba 👉Batafsil ✉️[email protected] ☎️ +998 55 512 00 77 📍Location 🌐Website | 📱Telegram | 📱Instagram | 📱LinkedIn | 🟥YouTube