Что делать если нужно поставить какую-то 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
Bitcoin Exchange Reserve Analysis:
Exchange reserve dropped from 1.9M BTC in 2022 to below 1.1M BTC in 2025.
Inverse correlation with price: as reserve decreases, price increases, peaking at $69.7K.
Indicates long-term holding and bullish sentiment. What's your take on future movements? #Bitcoin#CryptoAnalysis#MarketTrends
📊 Poll Time!
We want to know: What tools do you use to analyze the market? Cast your vote and let us know! #CryptoAnalysis
Vote now here : https://t.ly/2lIs or by replying with the corresponding option number or share your favorite analysis tool in the comments
🔍 Technical Analysis Software
💹 Candlestick Charts
📈 Fundamental Analysis Reports
📊 Market Data Aggregators
#Slex#SlexIO
2 days 23 hours left before the poll closes
Bitcoin Technical Analysis Update 🔝
Hello Crypto Enthusiasts! ⭐️
We're thrilled to announce that Bitcoin has just reached $71,000!
📈This milestone indicates we're on the verge of retesting the All-Time High (ATH) once again.
Current Price Action
✔️Resistance: Primary resistance is at the previous ATH of $72,000. Breaking this could propel Bitcoin higher.
✔️Support: Strong support is at $68,000.
✔️Moving Averages: The 50-day MA is trending upwards at $65,000, and the 200-day MA supports at $60,000.
Technical Indicators
✔️RSI: At 70, indicating bullish sentiment but nearing overbought territory.
✔️MACD: Well above the signal line, confirming a strong bullish trend.
✔️Volume: Increasing, signaling robust market participation.
Positive Predictions
1. Retesting ATH: Bitcoin is poised to challenge and potentially break $72,000.
2. Institutional Interest: Major players are increasing investments.
3. Global Adoption: Increasing adoption by countries and corporations.
4. Technical Upgrades: Upcoming upgrades to improve scalability and efficiency.
5. Bull Market Cycle: Analysts predict potential targets ranging from $80,000 to $100,000 in the coming months.
Conclusion
Bitcoin is buzzing with excitement as we approach new highs. Strong indicators, institutional interest, and global adoption signal a positive outlook. Stay tuned for more updates and prepare for an exhilarating ride to new heights!
Stay Informed
Join our Telegram channel for real-time updates, expert analysis, and to be part of a thriving crypto community. Let's capitalize on the incredible opportunities ahead!
🚀💰📈#Bitcoin#BTC#Crypto#BullMarket#ATH#CryptoAnalysis
⚡️Main news:
🔗Wallet on Telegram enforces new KYC rules, switches provider
🟢 PEPE whale up nearly $5M on investment within a month
💵Next $1 trillion company will be DePIN
📌 Alex Labs rolls out post-exploit recovery plan
💰Bitcoin in 42-day ‘boredom zone’ — traders debate next move
#Cryptoanalysis
#Cryptoenthusiast
#Cryptocurrencies
#Cryptowallet
☄️ZKasino gives investors 72-hour window to get back deposited ETH
💵ZKasino denied it tried to make off with $33 million of investor funds in April and has now opened up a short refund window.
#Cryptoanalysis
#Cryptoenthusiast
#Cryptocurrencies
#Cryptowallet
🚀 Bitcoin's Potential Bear-Market 'Iron Bottom' Predicted by Analyst
A CryptoQuant analyst has projected that Bitcoin might establish a bear-market 'iron bottom' within the $55,000–$60,000 range by the end of 2026. According to NS3.AI, this prediction is grounded in on-chain indicators, notably the MVRV Z-score, which has moderated but remains above negative levels.
#Bitcoin#Crypto#BearMarket#CryptoAnalysis#MVRV#OnChainData#CryptoPredictions#BTC
🚀 Experts Highlight Key Bitcoin Price Levels for Altcoin Bullishness
Bitcoin's price movement is under scrutiny as experts outline critical levels for potential market shifts. According to NS3.AI, Alex Kuptsikevich emphasized that Bitcoin must surpass $75,000 to trigger a bullish trend in altcoins, following multiple unsuccessful attempts to break out of the $70,000–$73,000 range. In a separate analysis, Mike Novogratz noted that Bitcoin needs to establish a stable position at $74,000 to pave the way for a breakthrough beyond $80,000.
#Bitcoin#Altcoins#BullishTrend#MarketShifts#CryptoAnalysis#PriceLevels#BitcoinPrice#Cryptocurrency#BTC