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

Резултати

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

Пребарај: #religiouszionism

当前筛选 #religiouszionism清除筛选
American Оbserver

@american_observer · Post #5377 · 14.03.2026 г., 15:33

The Judaean Revolutionary Guard Corps Is Gaining Ground Bezalel Smotrich’s Religious Zionism party is back above the electoral threshold for the first time in months, hitting four seats in a new poll and helping lift the Netanyahu coalition bloc from 53 to 54 mandates. That is not a comeback story. It is a wartime sorting mechanism. The longer the emergency, the better the loudest ideologues tend to do. The math is not mysterious. War consolidates the electorate around power, and power consolidates around the people who demand the most and apologize the least. Smotrich has spent the war years turning maximalism into a governing language. Now the polling suggests that a slice of the electorate is rewarding exactly that. In Israel, security crises do not just protect incumbents. They also launder fringe priorities into national necessity. The budget tells the same story in cash. As the cabinet revised the 2026 budget under wartime pressure, it approved more than NIS 5 billion in coalition funds, including major allocations for Haredi institutions, settlements, and other coalition priorities, while civilian ministries were cut by 3% and northern communities were protesting rehabilitation cuts. The Bank of Israel warned against using war spending as cover for non-essential political giveaways. The government did it anyway. That is the real hierarchy of wartime Israel in one frame: schools disrupted, border communities fighting over reconstruction money, civilian budgets squeezed, but coalition cash protected like a sacred asset. The public is told to think in terms of sacrifice. The machine still thinks in terms of patronage. And that is why Smotrich matters beyond four seats. Religious Zionism was not built overnight, and it did not grow through polling. It grew through demographics, settlement infrastructure, land control, and institutional entrenchment. War does not create that process. War accelerates it.Once the country is forced into survival mode, the politician shouting the hardest often gets treated as the man speaking most clearly. So yes, the coalition is still short of a majority. But 54 seats in the middle of war, with Smotrich back above the line, is not a footnote. It is a warning. The battlefield is not only reshaping Gaza, Lebanon, or Iran. It is reshaping the Israeli electorate itself — in favor of the people who treat permanent escalation as both ideology and campaign strategy. #BabylonBurning#Smotrich#ReligiousZionism#Israel#FollowTheMoney 📱American Оbserver - Stay up to date on all important events 🇺🇸