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

Резултати

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

Пребарај: #iplaw

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

@ai_and_law · Post #677 · 13.10.2025 г., 07:04

🇺🇸DC Comics Rejects Generative AI in Creative Work DC Comics President and Publisher Jim Lee made a clear statement during New York Comic Con: the company will not support the use of generative AI for storytelling or artwork. “Not now, not ever, as long as Anne DePies and I are in charge,” Lee said, framing AI’s role in creative industries as a passing trend akin to the Millennium bug scare and NFT hype. DC has long required that all its artwork be original and authentically created by artists. Recent backlash over suspected AI use in variant comic covers prompted the company to take an even firmer stance. Lee emphasized that audiences value “what feels authentic,” adding: “AI doesn’t dream. It doesn’t feel. It doesn’t make art. It aggregates it.” #AIEthics#CreativeRights#IPLaw #

AI & Law

@ai_and_law · Post #588 · 10.06.2025 г., 07:04

🇺🇸Labels vs. AI Music: Licensing Over Litigation? Major record labels—Universal, Sony, and Warner—are now negotiating licensing and equity deals with AI music startups Udio and Suno. The goal: resolve ongoing copyright lawsuits and set a precedent for compensating artists whose work has been used to train generative models. The labels are reportedly demanding both financial licensing terms and equity stakes in the companies. This marks a strategic shift from past copyright wars. Instead of litigation-first tactics like with Napster, the industry is exploring commercial alignment. If finalized, these agreements could define how creative rights are protected in the era of synthetic content—and signal how future IP disputes with AI firms may be resolved. #AIandLaw#CopyrightAI#IPlaw

AI & Law

@ai_and_law · Post #591 · 13.06.2025 г., 07:04

🇺🇸🎬 Hollywood Declares War on Generative AI Disney, Universal, Marvel, and other entertainment giants have filed a lawsuit against Midjourney, alleging that its AI models are built on large-scale copyright infringement. The studios accuse Midjourney of scraping protected visual content to allow users to generate unauthorized versions of iconic characters — from Yoda to Shrek. This is the first major legal action from Hollywood targeting generative AI, and it could define how U.S. courts interpret “fair use” in the age of synthetic media. As Disney’s counsel put it: “Piracy is piracy.” The entertainment industry may no longer sit at the negotiating table — it’s headed to court. #Midjourney#AIandLaw#FairUse#IPLaw

AI & Law

@ai_and_law · Post #788 · 19.03.2026 г., 08:04

🇺🇸⚖️Britannica and Merriam-Webster Sue OpenAI Over Copyright and Trademark Claims Encyclopedia Britannica and Merriam-Webster have filed a lawsuit against OpenAI, alleging “massive copyright infringement.” The publishers claim that nearly 100,000 copyrighted articles were scraped and used to train OpenAI’s large language models without permission. The complaint also alleges that OpenAI reproduces full or partial verbatim excerpts of their content in outputs and uses their materials within ChatGPT’s retrieval-augmented generation (RAG) processes. The lawsuit further claims violations of the Lanham Act, arguing that OpenAI attributes hallucinated or fabricated content to Britannica, potentially misleading users. According to the filing, ChatGPT generates responses that directly compete with publishers’ content, reducing traffic and revenue while raising concerns about the reliability of online information. This case adds to a growing number of lawsuits against OpenAI, including claims brought by The New York Times and Ziff Davis, as well as multiple newspapers in the U.S. and Canada. A separate lawsuit filed by Britannica against Perplexity on similar grounds remains pending. #Copyright#AIRegulation#AIGovernance#IPLaw#GenerativeAI#Litigation#AIethics