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

Резултати

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

Пребарај: #musicindustry

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

@ai_and_law · Post #740 · 12.01.2026 г., 08:04

🇺🇸🎼Universal Music Group and NVIDIA Partner on AI Music Discovery Universal Music Group (UMG) announced a collaboration with NVIDIA to develop AI tools for music discovery, creation, and engagement, using NVIDIA’s AI infrastructure and UMG’s music catalog. The partnership focuses on joint R&D aimed at advancing human music creation, ensuring rightsholder compensation, and improving attribution and protection of music-based content. As part of the project, the companies will extend NVIDIA’s Music Flamingo model to process full-length tracks, capturing elements such as harmony, structure, timbre, lyrics, and cultural context. The stated goal is to move beyond existing search and personalization models toward more interactive and contextual music discovery, while also encouraging artist adoption of AI-based creation tools. UMG and NVIDIA emphasize that the collaboration is framed around “responsible AI,” with safeguards intended to protect artists’ works, respect copyright, and ensure proper attribution. The partnership reflects UMG’s broader strategy of engaging with AI developers to shape how generative and discovery technologies are deployed in the music industry. #AICopyright#MusicIndustry#ResponsibleAI#AIRegulation

AI & Law

@ai_and_law · Post #730 · 24.12.2025 г., 08:04

🇺🇸🎼Cross-Border AI Music on Trial Independent musicians in Illinois have filed the first U.S. federal lawsuit targeting foreign-owned AI music generators, alleging copyright infringement and unfair practices by Mureka, an AI platform operated by Kunlun Tech Co., Ltd and Skywork AI Pte. Ltd. In Attack the Sound et al. v. Kunlun et al., plaintiffs claim that Mureka was trained on copied and stored sound recordings and musical works without permission, and that users can upload songs as “reference tracks” to imitate music or lyrics without consent or compensation. The complaint seeks injunctive relief and damages, alleging violations of U.S. copyright law, the DMCA, and the Illinois Biometric Information Privacy Act, including claims tied to voiceprints. Plaintiffs argue that Mureka—marketed as an “ultimate AI song generator” and used by more than 10 million users—directly competes with creators as a cheaper substitute for human creativity, disproportionately harming independent artists lacking label bargaining power. Filed by counsel from Loevy + Loevy, the case follows similar actions against U.S.-based AI music firms and is positioned as a landmark test of whether large-scale AI music systems owned abroad can operate in the U.S. market while respecting domestic IP and biometric protections. #AI#Copyright#MusicIndustry#IP

AI & Law

@ai_and_law · Post #394 · 11.09.2024 г., 07:04

Criminal Indictment Exposes $10 Million AI Music Streaming Fraud In a groundbreaking case, a North Carolina musician, Michael Smith, has been indicted for orchestrating a massive streaming fraud scheme that allegedly exploited AI-generated tracks to rake in over $10 million in royalties. This marks the first criminal case involving artificially inflated music streaming, highlighting the emerging risks as AI tools become more embedded in the music industry. Smith is accused of partnering with an AI music company to create a vast library of tracks, which he then fraudulently boosted using a network of bot accounts across major platforms like Spotify, Apple Music, and YouTube Music. The complex scheme, which began in 2017 and continued through 2024, involved deceiving distributors, financial institutions, and even the Mechanical Licensing Collective (MLC), which eventually caught on and halted royalty payments. This case underscores the growing challenge of maintaining integrity in the digital music ecosystem as AI continues to evolve. As the DOJ takes action, the music industry must ramp up efforts to detect and prevent such fraudulent activities to protect legitimate creators and maintain trust in digital platforms. #AI#MusicIndustry#StreamingFraud#DigitalLaw#Copyright