-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from pomponchik/develop
0.0.25
- Loading branch information
Showing
12 changed files
with
31 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ tests/cli/data/chpok | |
tests/cli/data/pok | ||
.idea | ||
.ruff_cache | ||
.mutmut-cache | ||
html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,3 @@ | ||
# Вы все еще ставите пакеты? Тогда мы идем к вам | ||
# INSTLD и будущее пакетных менеджеров | ||
|
||
|
||
Пакетный менеджер и связанный с ним тулинг - это очень часто штука, стоящая в основе инфраструктуры вокруг популярного современного языка. Требования к нему обычно довольно понятны: он должен давать возможность быстро собрать большой проект из кучи готовых компонентов. В Python с этим все немного неоднозначно. У нас есть стандартный pip, которого хватает для большинства ситуаций. Есть всякие замудренные решения вроде poetry для умных дядек, которые любят выступать на конференциях. Но увы, пока в Python не завезли чего-то настолько простого, чтобы вот прямо написал import в своем коде - и готово. Я решил это исправить. | ||
|
||
Расписать: я решил принести в Python немного магии. | ||
|
||
Данная статья посвящена библиотеке [instld](https://github.com/pomponchik/instld), которая позволяет вам: | ||
|
||
1. В принципе отказаться от такого шага, как установка библиотек. | ||
2. Использовать в одной программе более одного виртуального окружения. | ||
3. Использовать в одной программе несколько версий одной и той же библиотеки. | ||
4. Затащить в свою программу несколько библиотек с конфликтующими зависимостями, которые обычно не получается даже установить одновременно. | ||
5. Определять, какие библиотеки реально используются в проекте, а какие нет. | ||
|
||
Установить ее можно командой: | ||
|
||
```bash | ||
pip install instld | ||
``` | ||
|
||
Я предполагаю, что основная ЦА библиотеки - это люди, которые часто пишут скрипты одноразового запуска, например админы. Однако про ее возможности полезно знать всем питонистам, поскольку ситуации, когда нам может понадобиться что-то из перечисленного выше, случаются практически у каждого. Короче, поехали. | ||
|
||
|
||
## Автоматическая установка пакетов | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
![Когда выбрал instld](https://disabilitylawfirms.org/files/2019/09/AdobeStock_279551710.jpg) | ||
Год от года программы продолжают раздуваться. На хабре уже есть тысячи обличительных статей на эту тему, но что, если мы перестанем с этим бороться, примем неизбежное и начнем получать удовольствие? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ pytest-timeout==2.1.0 | |
contextif==0.0.3 | ||
ruff==0.0.290 | ||
pre-commit | ||
mutmut==2.4.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters