-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update suse in Linux-mac-install.md (#1362)
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -251,7 +251,7 @@ To test your installation, see [Testing your installation](#testing-your-install | |
> In the following instructions, replace `<SuseVersion>` with your version of Suse - if you are using Suse Enterprise Linux 15, it will be SLE_15_SP3 or SLE_15_SP4 (or above). For Suse 12, use SLE_12_SP5 (or above). Not all versions of PHP are available for all versions of Suse Linux - please refer to `http://download.opensuse.org/repositories/devel:/languages:/php` to see which versions of Suse have the default version PHP available, or check `http://download.opensuse.org/repositories/devel:/languages:/php:/` to see which other versions of PHP are available for which versions of Suse. | ||
> [!NOTE] | ||
> Packages for PHP 7.4 or above are not available for Suse 12. As of today, PHP 8.0 is the default for Suse 15. | ||
> Packages for PHP 7.4 or above are not available for Suse 12, as of today. | ||
### Step 1. Install PHP | ||
```bash | ||
|
@@ -364,6 +364,11 @@ PHP should now be in your path. Run `php -v` to verify that you are running the | |
brew link --force --overwrite [email protected] | ||
``` | ||
|
||
If using Apple M1 ARM64, you might need to set the path: | ||
```bash | ||
export PATH="/opt/homebrew/bin:$PATH" | ||
``` | ||
|
||
### Step 2. Install prerequisites | ||
Install the ODBC driver for macOS by following the instructions on the [Install the Microsoft ODBC driver for SQL Server (macOS)]( | ||
https://docs.microsoft.com/sql/connect/odbc/linux-mac/install-microsoft-odbc-driver-sql-server-macos?view=sql-server-ver15). | ||
|