A training to familiarize TIDE analysts with parquet datasets and python
0

Configure Feed

Select the types of activity you want to include in your feed.

Revert "README: add macOS system Python troubleshooting"

This reverts commit 780650bb0fb08448c97940f2156eb6d923e0956d.

-34
-34
README.md
··· 21 21 - **Python 3.11+** — verify with `python3 --version`. On Windows with Git Bash, 22 22 if `python3` is not found, use `python` or the full path to your installation. 23 23 Make sure Python is on your PATH during installation (check "Add to PATH"). 24 - 25 - **macOS users:** The system Python (`/usr/bin/python3`) is typically an older 26 - version (3.9 or 3.10) that you cannot upgrade. Install a modern Python via 27 - [Homebrew](https://brew.sh): 28 - ```bash 29 - brew install python@3.12 30 - ``` 31 - Then verify with `python3 --version`. If `python3` still points to the system 32 - version, check your PATH — Homebrew's Python is installed at 33 - `/opt/homebrew/bin/python3` (Apple Silicon) or `/usr/local/bin/python3` (Intel). 34 24 - **VS Code** — install from <https://code.visualstudio.com/> 35 25 - **Git Bash** (Windows) — installed with 36 26 [Git for Windows](https://git-scm.com/download/win). macOS and Linux users ··· 137 127 neither works, Python may not be on your PATH. Reinstall from 138 128 [python.org](https://www.python.org/downloads/) and check "Add to PATH" 139 129 during installation, then restart Git Bash. 140 - 141 - #### macOS: system Python is too old (3.9 or 3.10) 142 - 143 - macOS ships an old system Python at `/usr/bin/python3` that cannot be upgraded 144 - and is below the 3.11+ requirement. If `python3 --version` shows 3.10 or lower, 145 - install a modern version with Homebrew: 146 - 147 - ```bash 148 - brew install python@3.12 149 - ``` 150 - 151 - After installation, verify with `python3 --version`. If it still shows the old 152 - version, you may need to put Homebrew first on your PATH: 153 - 154 - ```bash 155 - # Apple Silicon (M1/M2/M3) 156 - export PATH="/opt/homebrew/bin:$PATH" 157 - 158 - # Intel Macs 159 - export PATH="/usr/local/bin:$PATH" 160 - ``` 161 - 162 - Add the appropriate `export` line to your `~/.bashrc` or `~/.zshrc` to make it 163 - permanent, then restart your terminal. 164 130 165 131 #### pip behind a proxy 166 132