- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for Homebrew (0.04 sec)
-
ci/official/utilities/setup_macos.sh
# Check if pyenv is managed by homebrew. If so, update and upgrade pyenv. # Otherwise, install the latest pyenv from github. if command -v brew &> /dev/null && brew list pyenv &> /dev/null; then # On "ventura-slcn" VMs, pyenv is managed via Homebrew. echo "pyenv is installed and managed by homebrew." brew update && brew upgrade pyenv else echo "pyenv is not managed by homebrew. Installing it via github..."
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jun 23 23:03:02 UTC 2025 - 6.8K bytes - Viewed (0) -
README.md
### Homebrew (recommended) Run the following command to install the latest stable MinIO package using [Homebrew](https://brew.sh/). Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data. ```sh brew install minio/stable/minio minio server /data
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.7K bytes - Viewed (0) -
configure.py
def convert_version_to_int(version): """Convert a version number to a integer that can be used to compare. Version strings of the form X.YZ and X.Y.Z-xxxxx are supported. The 'xxxxx' part, for instance 'homebrew' on OS/X, is ignored. Args: version: a version to be converted Returns: An integer if converted successfully, otherwise return None. """ version = version.split('-')[0]
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Apr 30 15:18:54 UTC 2025 - 48.3K bytes - Viewed (0)