@BinanceAlphaAirdropTracker · Post #114 · 31.07.2025 г., 01:59
⏰#GAIA FCFS Claim with minimum 200 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
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
Пребарај: #gaia
@BinanceAlphaAirdropTracker · Post #114 · 31.07.2025 г., 01:59
⏰#GAIA FCFS Claim with minimum 200 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
@BinanceAlphaAirdropTracker · Post #111 · 30.07.2025 г., 07:59
⏰#GAIA Claim with minimum 233 pts starts in about 1 minute 🎁 Airdrop: 500 $GAIA ($41)
Hashtags
@cosmomyst · Post #511 · 21.11.2025 г., 12:21
🪐 As scientists plan for the future of interstellar travel, precision targeting has become a top priority, with research focusing on how to accurately send spacecraft toward stars like Alpha Centauri, over 4 light-years from Earth. To achieve this, astronomers use extremely detailed maps of nearby stars—created by ESA’s Gaia mission—which charts the exact positions and motions of more than a billion stars, allowing future probes to steer through space with unprecedented accuracy as they journey beyond our solar system. ✨ #spaceships⚡#navigation⚡#gaia⚡#nasa⚡#galaxy⚡#stars⚡#astronomy⚡#universe⚡#cosmos⚡#space 👉subscribe Universe Mysteries 👉more Channels
@githubtrending · Post #15145 · 14.09.2025 г., 13:00
#javascript#gaia#general_purpose#multiagent_systems#multimodel DeepResearchAgent is a smart system that uses a top-level planner to break down big tasks into smaller parts and assigns them to specialized agents like analyzers, researchers, and browser tools. It can deeply analyze data, do thorough research, and automatically gather up-to-date information from the web. It supports many AI models and tools, including image and video generation, and runs tasks efficiently with asynchronous operations. This system helps you get detailed, well-organized research results faster and with less effort by automating complex, multi-step tasks and combining many AI capabilities in one framework. https://github.com/SkyworkAI/DeepResearchAgent
@githubtrending · Post #15399 · 07.01.2026 г., 13:30
#python#agent#agent_framework#browsecomp#deep_research#futurex#gaia#hle#research_agent#search_agent#xbench MiroThinker v1.5 is the top open-source AI search agent with a 256K context window and up to 400 tool calls per task for deep web research, code execution, and multi-step reasoning. It leads benchmarks like HLE-Text (39.2%), BrowseComp (69.8%), and GAIA (80.8%), beating other free agents at low cost. You benefit by getting accurate, real-world research help—like finding arXiv papers or solving complex queries—faster and cheaper than paid tools, with full open-source access on GitHub and Hugging Face. https://github.com/MiroMindAI/MiroThinker
@venturevillagewall · Post #4020 · 29.01.2025 г., 13:00
Recent Funding Rounds Overview 🔍 Latest funding rounds: - Zhongke Era: $27.61M - R&D in industrial control tech. Learn more - EIGHT Brewing Co: $26M - Organic lager by Troy Aikman. Learn more - Oncomatryx: $26.30M - Precision drugs for cancer treatment. Learn more - Atomicwork: $25M - AI-based IT service management. Learn more - Manas AI: $24.60M - AI models for drug development. Learn more - Token Security: $20M - Machine-First Identity Security. Learn more - iPronics: $20.86M - Solid-state optical switches for AI. Learn more - Gaia: $14M - Improving IVF payments. Learn more - Astrome Technologies: $10M - 5G internet infrastructure. Learn more - Paytner Factoring: $8.97M - B2B payment services. Learn more Keep an eye on these innovative startups! #Funding#ZhongkeEra#EIGHTBrewingCo#Oncomatryx#Atomicwork#ManasAI#TokenSecurity#iPronics#Gaia#Astrome#Paytner#AI#VC