1535 читали · 2 года назад
Как правильно установить пакетный менеджер Homebrew на macOS?
При первой установке Homebrew можно столкнуться со следующей ошибкой: Это означает, что система не видит команду brew, даже если она установлена. Чтобы установить все правильно, нужно проделать несколько действий: 1. Проверить соответствие с системными требованиями на официальном сайте brew.sh 2. Установить "Инструменты командной строки Xcode" (Command Line Tools for Xcode) xcode-select --install 3. Затем вставить в терминал команду установки Homebrew: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent...
06:44
1,0×
00:00/06:44
500,5 тыс смотрели · 4 года назад
3 месяца назад
Python PIP PIPX - Install and run Python applications in an Isolated environment
Python is a versatile programming language that is widely used for a variety of applications, from web development to data analysis. One of the essential tools for Python developers is pip and pipx, a package manager that simplifies the installation and management of Python packages. This article will walk you through the process of installing pip and pipx on Ubuntu, ensuring that you can easily manage your Python packages. And when it comes to package management in Python, there are two main tools: pip and pipx...