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

Резултати

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

Пребарај: #cryptocurrencies

当前筛选 #cryptocurrencies清除筛选
Morningstar Ventures (News & Announcements)

@morningstar_ventures · Post #271 · 06.02.2024 г., 14:10

📢 PORTFOLIO UPDATE Congrats to our portfolio company, Meria Finance, on the launch of its app on the Apple Store and Google Play 👏 The team has worked hard to develop an intuitive one-stop platform to easily buy, exchange, withdraw, stake, and lend #cryptocurrencies. Download the app: ➡️here

DWF Labs Broadcast

@Dwflabs · Post #114 · 23.12.2022 г., 03:30

BIT x DWF Labs Crypto Snapshot [23 Dec] 📰 Highlights: 🔸Whales accumulate $726 Million In #Bitcoin 🔸Bank of International Settlements allow banks to hold 2% in #cryptocurrencies 🔸High net-worth investors continue to seek access to #crypto Full read here.

🗺 Travel the World | Private Expeditions

@expeditionsworldwide · Post #19 · 08.08.2020 г., 05:51

👀 India, Indonesia and Mexico are the most promising countries for cryptocurrency adoption. This conclusion was made by researchers at the venture capital firm Jump Capital based on the following factors: ▫️ the risk of high inflation / currency instability; ▫️ large flows of remittances; ▫️ immature financial infrastructure / lack of trust in banks; ▫️population; ▫️ the ratio of GDP / national wealth; ▫️ gold reserves; ▫️regulatory and banking environment; ▫️ a tendency to speculation (exchange trading, gambling, etc.). #cryptocurrencies#research

Libreware

@libreware · Post #1011 · 06.11.2021 г., 16:13

Haveno https://github.com/haveno-dex/haveno Private and decentralized way to #exchange#Monero for national currencies or other #cryptocurrencies. Haveno uses peer-to-peer networking and multi-signature escrow to facilitate trading without a trusted third party custodian. Disputes can be resolved using non-custodial arbitration. Everything is built around Monero and Tor. Haveno is the Esperanto word for "Harbor". The project is stewarded by a core Team, currently formed by 2 people: ErCiccione and Woodser. See the FAQ in the wiki for more information about the project https://github.com/haveno-dex/haveno/wiki/FAQ Haveno is still work in progress. There are no binaries available at this stage. If you want to test Haveno you have to compile it first (see https://github.com/haveno-dex/haveno/blob/master/docs/installing.md). Status of the project At the moment Haveno is only a Proof of Concept. It's already possible to initiate crypto <-> XMR and fiat <-> XMR trades, but the platform still needs a lot of work before being available for public use.

Daily Channels

@dailychannels · Post #6559 · 21.12.2025 г., 01:00

Channel: Bitcoin & Ethereum Trading Members: ~24.05K 💢 Username: @bitcoin_ethereum_trading Description: Bitcoin and Ethereum Trading all for free 🏷 Tags: #crypto_fx_trading #ethereum#bitcoin#crypto#cryptocurrencies https://telegramchannels.me/channels/bitcoin_ethereum_trading

Daily Channels

@dailychannels · Post #6774 · 26.03.2026 г., 13:00

Group: ZombieSquad Community Members: ~14.09K 💢 Username: @zombiesquadhq Description: 🔥 Come play the game and earn sunlight, with a chance to score some airdrop rewards! 🏷 Tags: #airdrop #cryptocurrencies#aichatbot#airdrop#crypto https://lve.to/k1gt8zxptq

SIGNAL

@finsignal · Post #3846 · 27.05.2025 г., 14:34

⚠️#Google here gave the holder of #cryptocurrencies a dose of anxiety with the news that quantum computers will be able to hack the military-technical cooperation network much earlier than current forecasts. ⚠️ To #crack RSA encryption, you need 20 times less resources than expected (less than 1 million qubits). Modern quantum computers are much weaker, but their power is constantly progressing. According to various forecasts, it will be possible to cross the 1 million cubic meter mark after 2030.👀

🦅 [ perspective ix ]

@perspectiveix · Post #1208 · 17.04.2018 г., 19:30

​​💰The Top Ten Cryptocurrencies 1. Bitcoin 2. Ethereum 3. Ripple Bitcoin jumped back up over the $8,000 dollar mark on 13 April 2018. As this infographic shows, while #Bitcoin is by no means alone in the world of #CryptoCurrencies, it is by far the most valuable #CryptoCurrency, with a total market cap of over $133 billion. According to figures from CoinMarketCap, #Ethereum is the closest alternative, but with only $49 billion. 🚀@PerspectiveIX 🌀 ⁣http://prs.pctvix.co/TelegramIX ❓ Do you own any cryptocurrency? 👍🏻 Yes 🤔 Not yet, but thinking about buying some 👎🏻 No, and I'm not interested at all

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