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

Резултати

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

Пребарај: #fanton

当前筛选 #fanton清除筛选
TONlines – News

@tonlines · Post #7359 · 24.05.2025 г., 08:35

⚡️Fanton EN: TON FEST Begins with Exciting Prizes #TON#Fanton TON FEST hosted by Fanton EN is now open, offering numerous prizes and surprises from festival partners. Although entry is free, participants will need a ticket to partake in activities and win prizes. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7405 · 28.05.2025 г., 10:29

⚡️Fanton EN: Fantasy Football Showdown in Conference League Final! #Fanton#NFT Fanton EN invites followers to participate in a fantasy football challenge for the Conference League Final, featuring Real Betis vs Chelsea. Join tournaments with the chance to win prizes, including a Legendary Babic NFT card. Don’t miss the kickoff at 19:00 UTC! Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7250 · 17.05.2025 г., 06:31

⚡️Fanton EN: Join the Exciting Football Weekend #NFT#Fanton Fanton EN invites users to participate in a thrilling Football Weekend with fantasy tournaments. With confirmed lineups for Bundesliga and Ligue 1, fans can compete in various NFT tournaments across top leagues. Don't miss the $2,000 EPL Grand Tournament special promo! Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7219 · 14.05.2025 г., 18:35

Fanton EN: Lootboxes Available at Discounted Prices! #Fanton#NFT Fanton EN is offering a sale on lootboxes with prices starting as low as $10. Limited numbers are available including specialized boxes for goalkeepers, just before the RPL tournaments begin. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7184 · 13.05.2025 г., 08:38

Fanton EN: La Liga Tournaments Deadline #Fanton#NFT Fanton EN invites players to participate in La Liga-themed tournaments with entry fees ranging from $1 to $9. Exciting matches feature starting lineups from teams such as Girona, Valladolid, and possibly Real Sociedad and Celta. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7081 · 07.05.2025 г., 12:31

Fanton EN: Referral Program with Ultimate Champions #Fanton#NFT Fanton EN has launched a new referral program with Ultimate Champions. Participants can earn up to 6 NFT cards by inviting friends who are new to Fanton. The rewards are based on the friend’s Collection Score. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7241 · 16.05.2025 г., 14:14

Fanton EN: Friday EPL Fantasy Football Insights #EPL#Fanton Fanton EN provides updates for fantasy football fans with matches including Aston Villa against a lower-ranked team and Chelsea hosting Man United. Key players like Ollie Watkins and Enzo Fernández are highlighted for potential fantasy lineups. Participate in the EPL Double Tournament with an entry fee of $9 to secure top spots. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7231 · 15.05.2025 г., 18:16

Fanton EN: Secure Your Spot for the EPL Grand Tournament #EPL#Fanton Fanton EN is offering a promotional opportunity for players to secure tickets to the EPL Grand Tournament with a $2,000 guarantee. By making 7 entries by May 17th at 21:00 UTC, players can receive an additional free lineup and have the chance for more tickets by increasing their entries. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7131 · 09.05.2025 г., 07:58

⚡️Fanton EN: Last Call for EPL Grand Tournament Registration #Fanton#EPL Fanton EN announces the closing of registration for the English Premier League Grand Tournament, with $3,000 guaranteed. Top players in categories such as goalkeepers and defenders are highlighted, encouraging participation from fantasy players. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #6734 · 12.04.2025 г., 11:43

Fanton EN: New EPL Round Registration Closing Soon #EPL#Fanton Fanton EN invites participants to join the new EPL round with a $9 entry fee, featuring matches between Brighton vs Leicester, Nottm Forest vs Everton, and Southampton vs Aston Villa. Registration concludes in 2.5 hours. Source: link @tonlines

Hashtags

TONlines – News

@tonlines · Post #7596 · 24.11.2025 г., 11:15

Fanton EN Update: Fixes and Continued Monitoring #Fanton#Yandex Fanton EN announces that Yandex has resolved the issue affecting their operations. Although, some battle outcomes may see changes due to the glitch, including the annulled Güler vs. Valverde match. Further developments will be communicated as necessary. Source: link @tonlines

TONlines – News

@tonlines · Post #7478 · 15.11.2025 г., 14:21

Fanton EN: Jackpot Winner Announced! #Jackpot#Fanton The Fanton EN channel announced that the main prize has finally been claimed by @bombardir17 after an impressive 10-win streak, securing a jackpot of $820. A new jackpot with a starting prize of $400 is now up for grabs, and today features exciting battles among several players. Source: link @tonlines

12
ПретходнаСтраница 1 од 2Следна