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

Пребарај: #aiandfinance

当前筛选 #aiandfinance清除筛选
AI & Law

@ai_and_law · Post #107 · 08.09.2023 г., 07:04

CFA Institute Releases the Handbook of Artificial Intelligence and Big Data Applications in Investments Hello, dear subscribers! Explore the latest from the CFA (Chartered Financial Analyst) Institute Research & Policy Center - a comprehensive handbook authored by Larry Cao, CFA. It's your guide to decoding the dynamic world of investments powered by artificial intelligence (AI) and big data. As AI and big data weave deeper into investment processes, the CFA Institute aims to equip industry professionals to evaluate and incorporate these elements effectively. They emphasize the importance of practical insights alongside technical knowledge and recognize the value of early adopters' experiences in technology implementation. The Handbook can be useful for: ✅ C-suite executives and board members shaping their firms' AI and big data strategies ✅ Knowledge engineers leading AI and big data projects at investment firms ✅ Investment and tech professionals working on AI-driven teams ✅ Regulators staying updated on industry developments ✅ Students and educators preparing for future roles in investments or regulation #CFAInstitute#AI#BigData#Investments#FinancialInnovation#EthicalInvesting#AIandFinance