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

Резултати

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

Пребарај: #mt2111

当前筛选 #mt2111清除筛选
OnePlus OS Update Tracker

@OnePlusOTA · Post #649 · 25.06.2022 г., 07:30

OnePlus 9RT OxygenOS 12.1 Open Beta C.03 IND New design • Optimized desktop icons with improved textures, by using a design inspired by brand-new materials and uniting lights and layers Performance • Newly added Quick launch, a feature that detects the apps you use frequently and pre-loads them so you can open them quickly • Newly added a chart to display your battery usage • Optimized the auto brightness algorithm to adapt screen brightness to more scenes for a comfortable screen reading experience Dark mode • Newly supported three adjustable levels, bringing a more personalized and comfortable user experience Shelf • Newly added style options for Cards, making data contents more visual and easier to read • Newly added Earphone Control Card with Bluetooth earphone one-click adjustment • Newly added access to OnePlus Scout in Shelf, allowing you to search multiple contents on your phone, including Apps, Settings, Media Data, etc • Newly added OnePlus Watch Card in Shelf, to easily glance at your health status Work Life Balance • Newly added Work Life Balance feature, allowing you to effortlessly switch between Work and Life mode via quick settings • Supported automatic Work/Life mode switching, based on specific locations, Wi-Fi network, and time, also bringing customized App notification profiles according to the personalization Gallery • Newly supported switching between different layouts with a two-finger pinch gesture, intelligently recognizing the best-quality pictures, and cropping the thumbnail based on the content, making the gallery layout more pleasing Canvas AOD • Newly added diverse styles of lines and colors, for a more personalized lock screen experience with inspiring visuals • Newly added multiple brushes and strokes and support for color adjustment Games • Optimized the gaming experience in team fight scenes • Newly added the HyperBoost end-to-end frame rate stabilizer Camera • Optimized the display of camera modes on the menu bar • Optimized the experience of zooming in or out when shooting videos with rear camera Accessibility • Newly added visuals to text instructions for an intuitive understanding of accessibility functions • Newly supported more system apps in TalkBack, including Photos, Phone, Mail, and Calendar • Optimized categorization of functions by grouping them into vision, hearing, interactive actions, and general MD5 Full: acfa3cb0c877ea3cef2b8eec0df83d55 Size Full: 4.37 GB (4695033669) Downloads ColorOS Global Server: Full Oxygen Website Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Beta#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #851 · 14.11.2022 г., 16:24

Health & Digital wellbeing • When in Kid Space, your browser app automatically switches to Kids mode to create a child-friendly space. • Adds ambient light reminders in Kid Space. • Adds Eye comfort in Kid Space to protect children's vision. • Adds family health data in O Family. You can check the data to understand your family members' health status. • Adds notifications when O Family detecting abnormal health data and human falling on the ground Performance optimization • Optimizes the IEM ecosystem to include more apps. Gaming experience • Adds self-developed VRS technology, which dynamically adjusts the resolution to increase the performance while saving power so as to improve the gaming experience. • Upgrades to HyperBoost GPA 4.0 to stabilize the frame rate and balance the performance and power consumption in key scenarios. MD5 Full: dc1324b181a30a533a55df3e2b56153e Size Full: 4.66 GB (5001734934) Downloads ColorOS Global Server: Full ColorOS Europe Server: Full ColorOS India Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA [2/2] #Oxygen#martini#India#Stable#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #850 · 14.11.2022 г., 16:24

OnePlus 9RT OxygenOS 13.0.0 F.11 IND Aquamorphic Design • Adds Aquamorphic Design theme colors for enhanced visual comfort. • Applies the Aquamorphic Design philosophy to animations to make them natural and vivid. • Adds Shadow-Reflective Clock, with shadow simulating the orientation of the sun and moon. • Adds a Home screen world clock widget to show the time in different time zones. • Upgrades to Quantum Animation Engine 4.0, with a new behavior recognition feature, which recognizes complex gestures and provides optimized interactions. • Optimizes UI layers for clearer and neater visual experience. • Applies real-world physical motions to animations to make them look more natural and intuitive. • Adapts responsive layouts to accommodate different screen sizes to improve readability. • Optimizes the widget design to make information easier and quicker to find. • Optimizes fonts for better readability. • Enriches and optimizes illustrations for features by incorporating multicultural and inclusive elements. Efficiency • Adds Meeting Assistant to enhance the meeting connecting and note-taking experience and introduces an option to make notifications more subtle and less distracting. • Adds support for one-tap meeting joining and smart meeting minutes to improve work efficiency. • Adds large folders to the Home screen. You can now open an app in an enlarged folder with just one tap and turn pages in the folder with a swipe. • Adds a new type of Always-On Display that shows live information about music, ride-hailing, and food delivery. (Supports only some apps) • Adds NFC university card. You can now use your phone as your university card. (This feature is only available in some universities.) • Adds support to double tap the power button to show your health code. • Adds media playback control, and optimizes the Quick Settings experience. • Adds smart event management and conflict reminders to help with your scheduling. • Adds support for one-tap calendar sync to DingTalk and one-tap sync of email events. • Adds support for event recognition. You can use screen recognition to recognize and sync the events on the current screen to Calendar with one tap. • Adds more markup tools for screenshot editing. • Adds support for adding widgets to the Home screen, making information display more personalized. • Upgrades Recorder. Search capabilities are enhanced and exporting images and text is supported. • Optimizes Breeno Suggestions to make scenario-based suggestions for apps and services. Seamless interconnection • Upgrades to Multi-Screen Connect 2.0. You can answer or hang up calls on a connected PC and even switch a call between your phone and PC. • Optimizes Multi-Screen Connect. You can open multiple mobile apps on a connected PC for efficient multitasking. • Optimizes Screencast, with cast content automatically adapting to the target screen. Personalization • Adds more Omoji materials to cover more scenarios. Omoji now supports to set the contacts avatars, fully expressing yourself with more customized avatars. • Adds Insight Always-On Display, with more personalized Always-On Display settings available. • Optimizes Portrait Silhouette Always-On Display, with more drawing tools and line colors available. Security & privacy • Adds an automatic pixelation feature for chat screenshots. The system can identify and automatically pixelate profile pictures and display names in a chat screenshot to protect your privacy. • Adds smart permission suggestions to improve security. • Adds a feature to prevent malicious attempts to lure users into installing apps, supporting smart blocking of malicious pop-ups and promotions. • Adds regular clearing of clipboard data for privacy protection. • Optimizes Private Safe. The Advanced Encryption Standard (AES) is used to encrypt all files for enhanced security of private files. • Optimizes payment security. Exported by MlgmXyysd Color OTA Bot@OnePlusOTA [1/2] #Oxygen#martini#India#Stable#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #786 · 03.10.2022 г., 02:56

OnePlus 9RT OxygenOS 12.1 C.07 IND System • Integrates the September 2022 Android security patch to enhance system security. Other • Fixes an issue where Amazon Alexa would not be enabled occasionally. SHA-1 Full: af960d00bfcdf1c6e61c1324f08fcdd1c5f597df MD5 Full: 0e09443102a8c8ee0958220217aa6a69 Size Full: 4.43 GB (4761965577) Downloads ColorOS Global Server: Full ColorOS Europe Server: Full ColorOS India Server: Full Google OTA Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Stable#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #708 · 04.08.2022 г., 06:13

OnePlus 9RT OxygenOS 12.1 C.05 IND System • Improves system stability. • Optimizes the experience of fingerprint unlocking. SHA-1 Full: 096408a72c327ef8aabf8443a618ae51ee03274f MD5 Full: 9d8765a1c4059fc953dfb7c721364700 Size Full: 4.38 GB (4697892937) Downloads ColorOS India Server: Full Google OTA Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Stable#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #701 · 27.07.2022 г., 14:27

OnePlus 9RT OxygenOS 12.1 C.04 IND New design • Optimized desktop icons with improved textures, by using a design inspired by brand-new materials and uniting lights and layers Performance • Newly added Quick launch, a feature that detects the apps you use frequently and pre-loads them so you can open them quickly • Newly added a chart to display your battery usage • Optimized the auto brightness algorithm to adapt screen brightness to more scenes for a comfortable screen reading experience Dark mode • Newly supported three adjustable levels, bringing a more personalized and comfortable user experience Shelf • Newly added style options for Cards, making data contents more visual and easier to read • Newly added Earphone Control Card with Bluetooth earphone one-click adjustment • Newly added access to OnePlus Scout in Shelf, allowing you to search multiple contents on your phone, including Apps, Settings, Media Data, etc • Newly added OnePlus Watch Card in Shelf, to easily glance at your health status Work Life Balance • Newly added Work Life Balance feature, allowing you to effortlessly switch between Work and Life mode via quick settings • Supported automatic Work/Life mode switching, based on specific locations, Wi-Fi network, and time, also bringing customized App notification profiles according to the personalization Gallery • Newly supported switching between different layouts with a two-finger pinch gesture, intelligently recognizing the best-quality pictures, and cropping the thumbnail based on the content, making the gallery layout more pleasing Canvas AOD • Newly added diverse styles of lines and colors, for a more personalized lock screen experience with inspiring visuals • Newly added multiple brushes and strokes and support for color adjustment Games • Optimized the gaming experience in team fight scenes • Newly added the HyperBoost end-to-end frame rate stabilizer Camera • Optimized the display of camera modes on the menu bar • Optimized the experience of zooming in or out when shooting videos with rear camera Accessibility • Newly added visuals to text instructions for an intuitive understanding of accessibility functions • Newly supported more system apps in TalkBack, including Photos, Phone, Mail, and Calendar • Optimized categorization of functions by grouping them into vision, hearing, interactive actions, and general SHA-1 Full: 4ca68229156d40eb5799bafd9f37498251b5c33f MD5 Full: f8391be3697d6169ffd34e582760ad8b Size Full: 4.38 GB (4697884345) Downloads ColorOS Global Server: Full Google OTA Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Stable#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #677 · 14.07.2022 г., 02:44

OnePlus 9RT OxygenOS 11.3 A.11 IND System • Fixed the issue that the call recording option could not display • Optimized network stability • Improved system stability • Updated Android security patch to 2022.06 Camera • Fixed the occasional issue that camera crashed abnormally SHA-1 Increment (MT2111_11_A.10): ba34623fa4cf5692ed95c04bdbc2e1783b67f4ce Size Increment (MT2111_11_A.10): 119.85 MB (125670508) Downloads Google OTA Server: Increment (MT2111_11_A.10) Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Increment#Stable#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #667 · 03.07.2022 г., 11:59

OnePlus 9RT OxygenOS 11.3 A.10 IND System • Optimized network stability • Improved system stability • Updated Android security patch to 2022.06 Camera • Fixed the occasional issue that camera crashed abnormally SHA-1 Increment (MT2111_11_A.07): 9de27ebafbffca67c87ddbf4adc1b2ce54c38d57 Increment (MT2111_11_A.08): 29c5a12fbc89558fdb0aab0432b94639ef286195 Size Increment (MT2111_11_A.07): 761.06 MB (798025743) Increment (MT2111_11_A.08): 708.05 MB (742442118) Downloads Google OTA Server: Increment (MT2111_11_A.07) Increment (MT2111_11_A.08) Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Increment#Stable#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #596 · 20.05.2022 г., 16:58

OnePlus 9RT OxygenOS 11.3 A.08 IND System • Optimized the fluency of sliding desktop in certain scenarios • Optimized the display effect of Power off pop-up window • Fixed the issue that Pocket Mode did not take effect after blocking the sensor • Fixed the occasional issue that the desktop displayed abnormally after unlocking with fingerprint in certain scenarios • Fixed the occasional issue that the clock on lockscreen displayed abnormally in certain scenarios • Improved system stability • Updated Android security patch to 2022.04 SHA-1 Increment (MT2111_11_A.07): ac91c918d090956b5e73616c8a641acc53b71449 Size Increment (MT2111_11_A.07): 245.16 MB (257070353) Downloads Google OTA Server: Increment (MT2111_11_A.07) Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Increment#Stable#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #620 · 02.06.2022 г., 14:10

OnePlus 9RT OxygenOS 12.1 Alpha C.02 IND System • Optimized the cold start time of GPS Network • Optimized the compatibility and stability of network Camera • Optimized the fluency of camera • Optimized the power consumption of camera MD5 Full: 822f56b9566d91a1fa561b0cecc97d42 Size Full: 4.33 GB (4648181684) Downloads ColorOS Global Server: Full Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Alpha#Full#MT2111

OnePlus OS Update Tracker

@OnePlusOTA · Post #515 · 19.03.2022 г., 17:20

OnePlus 9RT OxygenOS 11.3 A.07 IND System • Optimized power consumption, improved battery life • Fixed the issue that speaker unable to play sound in some scenarios • Fixed the low probability issue of blurred screen when in the bright environment • Improved system stability • Updated Android security patch to 2022.03 SHA-1 Increment (MT2111_11_A.06): f326b227659d2788884edd8be0512761356b6aff Downgrade: - Size Increment (MT2111_11_A.06): 131.29 MB (137662723) Downgrade: 3.77 GB (4048990875) Downloads Google OTA Server: Increment (MT2111_11_A.06) Oxygen Website Server: Downgrade Exported by MlgmXyysd Color OTA Bot@OnePlusOTA #Oxygen#martini#India#Increment#Stable#Downgrade#MT2111