TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #210 · 3 фев.

Что делать если нужно поставить какую-то Python-библиотеку а root-прав нет? То есть в систему библиотеку никак и ничего не поставить. Есть как минимум два способа это решить правильно! 🔸 Сделать виртуальное окружение и ставить там что угодно. Это позволит создать полностью независимое исполняемое окружение для ваших приложений. Все библиотеки будут храниться в домашней директории юзера а значит доступ на запись имеется. Создать очень просто: python3 -m venv ~/venvs/myenvname Теперь активируем окружение # Linux source ~/venvs/myenvname/bin/activate # Windows %userprofile%\venvs\myenvname\Scripts\activate.bat Можно ставить любые библиотеки и запускать приложение. Это стандартный метод работы с любым проектом. Если еще не используете его, то пора начинать. Даже при наличии root доступа! 🔸 Бывает, что нет возможности запустить приложение из своего виртуального окружения. Например, его запускает какой-то сервис от вашего юзера и вставить активацию окружения вы не можете. В этом случае можно установить библиотеки для Python не глобально в систему, а только для юзера. Выполните этот код в консоли: python3 -m site Вы получите что-то такое: sys.path = [ '/home/user', '/usr/lib/python37.zip', '/usr/lib/python3.7', '/usr/lib/python3.7/lib-dynload', '/home/user/.local/lib/python3.7/site-packages', ... ] USER_BASE: '/home/user/.local' USER_SITE: '/home/user/.local/lib/python3.7/site-packages' ENABLE_USER_SITE: True Нас интересует параметр USER_SITE. Это путь к пользовательским библиотекам, которые доступны по умолчанию, если они есть. Именно сюда будут устанавливаться модули если добавить флаг --user при установке чего-либо через pip pip install --user requests Для этой команды не нужны root-права. После неё можно запускать системный интерпретатор без виртуальных окружений и установленная библиотека будет доступна для текущего юзера. Параметр USER_BASE показывает корневую директорию для хранения user-библиотек. Её можно изменить с помощью переменной окружения PYTHONUSERBASE export PYTHONUSERBASE=~/pylibs python3 -m site ... USER_BASE: '/home/user/pylibs' USER_SITE: '/home/user/pylibs/lib/python3.7/site-packages' Получается некоторое подобие виртуального окружения для бедных 😁 которое можно менять через эту переменную (не делайте так!Лучше venv!) 🔸 Дописывание пути в PYTHONPATH Этот способ не входит в список "двух правильных", но тоже рабочий. Здесь придётся сделать всё несколько сложней. Сначала ставим библиотеку в любое место указывая путь установки pip3 install -t ~/mylibs modulename Библиотека установится без привязки к какому-либо интерпретатору. То есть по умолчанию не будет видна. Теперь в нужный момент добавляем этот путь в sys.path или в PYTHONPATH. Не буду советовать так делать. Единственный раз когда этот способ мне пригодился и решил поставленную задачу, это при создании общей библиотеки для кластера компьютеров. Модули лежат в сети и подгружаются для всех из одного и того же места. То есть обновлять файлы требуется только один раз а не на всех хосты отдельно. Минусы такого подхода: ▫️Нужно всем хостам пробить нужный путь в .bashrc или ещё куда-то чтобы он сетапился на старте. ▫️Чем больше хостов тем больше нагрузка на сеть. Иногда такой способ не подходит именно по этой причине. Тогда Ansible вам в помощь. ▫️Не очень подходит если хосты с разными операционками. Некоторые библиотеки различаются для Linux и Windows (там, где есть бинарники) и приходится мудрить более сложные схемы. #tricks#basic

Резултати

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

Пребарај: #futureofai

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

@ai_and_law · Post #67 · 26.07.2023 г., 07:04

Unveiling the Future of AI: OECD's Expert Group on AI Futures Hello, AI & Law community! The Organisation for Economic Co-operation and Development (OECD) has established a brand new Expert Group on AI Futures to tackle the challenges arising from the rapid advancements in artificial intelligence systems. This initiative aims to provide valuable insights into the future of AI, empowering governments to develop proactive and effective AI policies. The group is intended to provide insights on: 1️⃣ key milestones for possible future developments in advanced AI systems; 2️⃣ various risks associated with each milestone; 3️⃣ best practices in AI safety; 4️⃣ scenarios about AI’s future; and 5️⃣ suggested policy approaches to mitigate future risks while harnessing the benefits of AI. #AI#AIInsights#FutureofAI#AIpolicies#OECD

ChatGPT AI Technology News

@chatgpt_officialnews · Post #234 · 07.08.2025 г., 09:19

🚀Introducing GPT-5: The Next Evolution in AI We’re excited to announce the launch of GPT-5, the latest breakthrough in artificial intelligence technology. This powerful new model brings significant advancements in understanding and generating human-like text, taking AI interactions to a whole new level. 🔍Key Features of GPT-5: Enhanced Language Understanding: GPT-5 can grasp more nuanced contexts, offering even more coherent and contextually aware conversations. Greater Creativity: With improved creativity and imagination, GPT-5 is now capable of generating more dynamic and innovative content, from stories to complex ideas. Faster Processing: Expect lightning-fast responses, with the ability to handle more complex queries at scale. Better Multilingual Support: GPT-5 speaks and understands more languages than ever before, helping you communicate across borders effortlessly. Refined Ethical Safeguards: GPT-5 is designed with enhanced safety mechanisms, making it even better at aligning with human values and ethical standards. 💡 Whether you’re a researcher, developer, content creator, or just curious about the future of AI, GPT-5 is here to empower your work, spark creativity, and unlock new possibilities. 🌐 Dive into the future of AI with GPT-5 today! ➖➖➖➖🔻 🧠 BOT: @Chatgpt_OfficialBOT 💎@Chatgpt_OfficialNews #️⃣#GPT5#AI#ArtificialIntelligence#Innovation#FutureOfAI ➖➖➖➖🔺

ChatGPT AI Technology News

@chatgpt_officialnews · Post #13 · 18.01.2025 г., 14:51

🚀 Exciting News from OpenAI! 🤖✨ OpenAI is reviving its Robotics Initiative, and it's as ambitious as ever! They're hiring for roles to develop versatile, adaptive robots equipped with custom sensors—robots that aim to operate with human-like intelligence in real-world settings. 🌎🤖 Imagine robots navigating our world with the power of OpenAI's cutting-edge AI models—helping, innovating, and making life better for everyone. 🌟 This is a huge step in bringing AI into the physical world, and we can't wait to see what they'll achieve! 🙌 💡 Thoughts on this exciting development? Drop them in the comments below! ⬇️ ➖➖➖➖🔻 💎@Chatgpt_OfficialNewsjoin US ⚡️ 🤖BOT:@Chatgpt_OfficialBOT 📱#ChatGPT#AI#OpenAI#Robotics#AIInnovation#FutureOfAI#TechNews ➖➖➖➖🔺

AI & Law

@ai_and_law · Post #28 · 14.06.2023 г., 13:58

MEPs ready to negotiate first-ever rules for safe and transparent AI Members of the European Parliament (MEPs) are prepared to enter negotiations for the establishment of groundbreaking rules governing the safe and transparent use of artificial intelligence. Today the European Parliament adopted its negotiating position on the Artificial Intelligence Act with 499 votes in favour, 28 against and 93 abstentions ahead of talks with EU member states on the final shape of the law. Negotiations with the Council on the final form of the law will begin later today. #AI#Regulation#EuropeanParliament#AIAct#Ethics#Transparency#DataProtection#Innovation#FutureOfAI

Crypto M - Crypto News

@CryptoM · Post #64466 · 09.04.2026 г., 01:24

🚀 CZ on AI's Trajectory: 'Right Now We Solve Problems for AI — Soon AI Will Solve Problems for Us' Speaking on The Wolf of All Streets Podcast, Binance co-founder Changpeng Zhao (CZ) said the exchange's original 2018 customer service agent "cs_bob" was not true AI but rather an SQL script, which has since evolved significantly. CZ said approximately 80% of Binance's customer support inquiries are now handled from first response to resolution by AI, with a target of reaching 99%. He expressed confidence that advances in neural language models and new training data will close the gap. CZ described AI as one of three transformative technologies of his adult lifetime — alongside the internet and blockchain — and said the trajectory will shift from humans solving problems for AI to AI solving problems for humans. #AI#Binance#CZ#Blockchain#NeuralLanguageModels#CustomerSupport#TechTransformation#FutureOfAI#BNB