@fredlackey/devutils 0.0.13 → 0.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,731 @@
1
+ # Installing Comet Browser
2
+
3
+ ## Overview
4
+
5
+ Comet Browser is an AI-native web browser developed by Perplexity AI. Built on the Chromium engine, Comet integrates advanced AI capabilities directly into the browsing experience, transforming passive web navigation into active cognition. Key features include a built-in AI assistant powered by GPT-4o, Claude, and Perplexity Sonar models; agentic search capabilities that can complete complex tasks like reservations, shopping, and meeting planning; smart tab organization; multilingual content translation; and a built-in ad blocker. Comet supports Chrome extensions and maintains full compatibility with Chromium-based web standards.
6
+
7
+ **Important**: Comet Browser is currently available only on macOS and Windows. Linux support (including Ubuntu, Raspberry Pi OS, Amazon Linux, and WSL) is not yet available. Perplexity has indicated that Linux and mobile support are planned for future releases, but no confirmed release dates have been announced. This documentation covers the supported platforms and provides guidance for unsupported platforms.
8
+
9
+ ## Dependencies
10
+
11
+ ### macOS (Homebrew)
12
+ - **Required:**
13
+ - `Homebrew` - Install via `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` or run `dev install homebrew`
14
+ - **Optional:** None
15
+ - **Auto-installed:** None (Homebrew cask handles Comet installation directly)
16
+
17
+ ### Ubuntu/Debian (APT)
18
+ - **Required:** Not supported on this platform. Comet Browser does not provide Linux builds.
19
+ - **Alternative:** Use the Perplexity AI web interface at https://www.perplexity.ai in any browser.
20
+
21
+ ### Raspberry Pi OS (APT)
22
+ - **Required:** Not supported on this platform. Comet Browser does not provide ARM Linux builds.
23
+ - **Alternative:** Use the Perplexity AI web interface at https://www.perplexity.ai in Chromium browser.
24
+
25
+ ### Amazon Linux (DNF/YUM)
26
+ - **Required:** Not supported on this platform. Comet Browser does not provide Linux builds.
27
+ - **Alternative:** Use the Perplexity AI web interface at https://www.perplexity.ai in any browser.
28
+
29
+ ### Windows (winget)
30
+ - **Required:**
31
+ - `winget` - Included in Windows 10 version 2004+ and Windows 11
32
+ - Administrator privileges may be required for system-wide installation
33
+ - **Optional:** None
34
+ - **Auto-installed:** None (Comet installer handles all dependencies)
35
+
36
+ ### WSL (Ubuntu)
37
+ - **Required:** Not supported. Comet Browser requires native Windows or macOS. For WSL users, install Comet on the Windows host and access it from Windows.
38
+ - **Alternative:** Install Comet on Windows (see Windows section) and use from Windows desktop.
39
+
40
+ ### Git Bash (Windows)
41
+ - **Required:**
42
+ - Comet Browser installed on Windows host (see Windows section)
43
+ - `PowerShell` access for installation
44
+ - **Optional:** None
45
+ - **Auto-installed:** None
46
+
47
+ ## Prerequisites
48
+
49
+ Before installing Comet Browser, ensure:
50
+
51
+ 1. **Internet connectivity** - Required to download the browser package (approximately 200 MB)
52
+ 2. **Perplexity account** - Required for full AI functionality (can create during first launch)
53
+ 3. **Sufficient disk space** - Comet requires approximately 500 MB of disk space
54
+ 4. **Minimum RAM** - 4 GB RAM required; 16 GB recommended for optimal AI performance
55
+ 5. **64-bit operating system** - Required on all supported platforms
56
+
57
+ ## Platform-Specific Installation
58
+
59
+ ### macOS (Homebrew)
60
+
61
+ #### Prerequisites
62
+
63
+ - macOS 12 (Monterey) or later
64
+ - Both Apple Silicon (M1/M2/M3) and Intel processors are supported
65
+ - Homebrew package manager installed
66
+ - Terminal access
67
+
68
+ If Homebrew is not installed, install it first:
69
+
70
+ ```bash
71
+ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
72
+ ```
73
+
74
+ #### Installation Steps
75
+
76
+ Run the following command to install Comet Browser:
77
+
78
+ ```bash
79
+ brew install --cask --quiet comet
80
+ ```
81
+
82
+ The `--cask` flag specifies a graphical application (as opposed to a command-line tool), and `--quiet` suppresses non-essential output, making the command suitable for automation scripts.
83
+
84
+ After installation, Comet will be available in the Applications folder. Launch it from the command line:
85
+
86
+ ```bash
87
+ open -a "Comet"
88
+ ```
89
+
90
+ #### Verification
91
+
92
+ Confirm the installation succeeded:
93
+
94
+ ```bash
95
+ ls /Applications/Comet.app && echo "Comet Browser installed successfully"
96
+ ```
97
+
98
+ Verify the installed version:
99
+
100
+ ```bash
101
+ /Applications/Comet.app/Contents/MacOS/Comet --version
102
+ ```
103
+
104
+ Expected output (version numbers may vary):
105
+
106
+ ```
107
+ Comet 143.2.7499.37648
108
+ ```
109
+
110
+ #### Troubleshooting
111
+
112
+ **Problem**: `brew: command not found`
113
+
114
+ **Solution**: Homebrew is not in your PATH. Add it:
115
+
116
+ ```bash
117
+ eval "$(/opt/homebrew/bin/brew shellenv)"
118
+ ```
119
+
120
+ For a permanent fix, add the above line to your `~/.zshrc` or `~/.bash_profile`.
121
+
122
+ **Problem**: Comet fails to open after installation
123
+
124
+ **Solution**: macOS Gatekeeper may block the application. Go to System Settings > Privacy & Security, and click "Open Anyway" next to the Comet message. Alternatively, remove the quarantine attribute:
125
+
126
+ ```bash
127
+ xattr -cr /Applications/Comet.app
128
+ ```
129
+
130
+ **Problem**: Installation fails with "Cask 'comet' is already installed"
131
+
132
+ **Solution**: Reinstall the cask:
133
+
134
+ ```bash
135
+ brew reinstall --cask comet
136
+ ```
137
+
138
+ **Problem**: "Comet" is not recognized after install
139
+
140
+ **Solution**: The application name in the cask may differ slightly. Check the Applications folder:
141
+
142
+ ```bash
143
+ ls /Applications | grep -i comet
144
+ ```
145
+
146
+ ---
147
+
148
+ ### Ubuntu/Debian (APT)
149
+
150
+ #### Prerequisites
151
+
152
+ - Ubuntu 18.04 or later, or Debian 10 or later
153
+ - sudo privileges
154
+
155
+ **Critical Limitation**: Comet Browser does NOT support Linux. Perplexity has not released Linux builds for Comet Browser. This limitation applies to all Linux distributions, including Ubuntu, Debian, and their derivatives.
156
+
157
+ #### Installation Steps
158
+
159
+ **Comet Browser cannot be installed on Ubuntu/Debian.**
160
+
161
+ **Alternative: Use Perplexity AI Web Interface**
162
+
163
+ Access Perplexity AI's features through your existing web browser:
164
+
165
+ ```bash
166
+ # Install a Chromium-based browser if needed
167
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update -y
168
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y chromium-browser
169
+
170
+ # Open Perplexity AI
171
+ chromium-browser https://www.perplexity.ai &
172
+ ```
173
+
174
+ The web interface at https://www.perplexity.ai provides many of the same AI search and assistant capabilities as Comet Browser.
175
+
176
+ #### Verification
177
+
178
+ Verify access to Perplexity AI web interface:
179
+
180
+ ```bash
181
+ curl -sI https://www.perplexity.ai | head -1
182
+ ```
183
+
184
+ Expected output:
185
+
186
+ ```
187
+ HTTP/2 200
188
+ ```
189
+
190
+ #### Troubleshooting
191
+
192
+ **Problem**: Want to use Comet Browser features on Linux
193
+
194
+ **Solution**: Perplexity AI's core functionality is available through the web interface at https://www.perplexity.ai. While the browser-specific features like tab management and agentic tasks are not available, the AI search and assistant capabilities work in any modern browser.
195
+
196
+ **Problem**: Need browser-integrated AI on Linux
197
+
198
+ **Solution**: Consider alternative AI-integrated browsers that support Linux, such as:
199
+ - Brave Browser with Leo AI (`sudo apt-get install -y brave-browser`)
200
+ - Arc Browser (if Linux support is added)
201
+ - Browser extensions for AI assistants in Chrome/Firefox
202
+
203
+ ---
204
+
205
+ ### Raspberry Pi OS (APT)
206
+
207
+ #### Prerequisites
208
+
209
+ - Raspberry Pi OS (32-bit or 64-bit)
210
+ - Raspberry Pi 3 or later
211
+ - sudo privileges
212
+
213
+ **Critical Limitation**: Comet Browser does NOT support ARM architecture or Linux. Perplexity only provides builds for x86/x64 Windows and macOS (both Intel and Apple Silicon). This means Comet Browser cannot be installed on any Raspberry Pi device.
214
+
215
+ #### Installation Steps
216
+
217
+ **Comet Browser cannot be installed on Raspberry Pi OS.**
218
+
219
+ **Alternative: Use Perplexity AI Web Interface**
220
+
221
+ Access Perplexity AI's features through Chromium:
222
+
223
+ ```bash
224
+ # Update packages
225
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update -y
226
+
227
+ # Install Chromium (optimized for ARM)
228
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y chromium-browser
229
+
230
+ # Open Perplexity AI
231
+ chromium-browser https://www.perplexity.ai &
232
+ ```
233
+
234
+ **Note**: On newer Raspberry Pi OS versions, the package may be named `chromium`:
235
+
236
+ ```bash
237
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y chromium
238
+ chromium https://www.perplexity.ai &
239
+ ```
240
+
241
+ #### Verification
242
+
243
+ Verify Chromium installation and Perplexity AI access:
244
+
245
+ ```bash
246
+ chromium-browser --version 2>/dev/null || chromium --version
247
+ curl -sI https://www.perplexity.ai | head -1
248
+ ```
249
+
250
+ #### Troubleshooting
251
+
252
+ **Problem**: Why can't I install Comet Browser?
253
+
254
+ **Solution**: Perplexity does not provide ARM Linux builds of Comet Browser. The only way to access Perplexity AI features on Raspberry Pi is through the web interface.
255
+
256
+ **Problem**: Web interface is slow on Raspberry Pi
257
+
258
+ **Solution**: Raspberry Pi has limited resources. Launch Chromium with performance flags:
259
+
260
+ ```bash
261
+ chromium-browser --disable-gpu --disable-software-rasterizer https://www.perplexity.ai &
262
+ ```
263
+
264
+ ---
265
+
266
+ ### Amazon Linux/RHEL (DNF/YUM)
267
+
268
+ #### Prerequisites
269
+
270
+ - Amazon Linux 2023 or RHEL 8+
271
+ - sudo privileges
272
+ - Desktop environment (if attempting alternatives)
273
+
274
+ **Critical Limitation**: Comet Browser does NOT support Linux. Amazon Linux, RHEL, Fedora, Rocky Linux, and AlmaLinux are all unsupported platforms.
275
+
276
+ #### Installation Steps
277
+
278
+ **Comet Browser cannot be installed on Amazon Linux or RHEL-based distributions.**
279
+
280
+ **Alternative: Use Perplexity AI Web Interface**
281
+
282
+ For Amazon Linux instances with a desktop environment, access Perplexity AI through a browser:
283
+
284
+ ```bash
285
+ # Install Firefox (if not present)
286
+ sudo dnf install -y firefox
287
+
288
+ # Open Perplexity AI (requires desktop environment)
289
+ firefox https://www.perplexity.ai &
290
+ ```
291
+
292
+ For headless server environments, use Perplexity AI's API directly for programmatic access.
293
+
294
+ #### Verification
295
+
296
+ Verify Firefox installation:
297
+
298
+ ```bash
299
+ firefox --version
300
+ ```
301
+
302
+ #### Troubleshooting
303
+
304
+ **Problem**: Amazon Linux is typically a server OS without a GUI
305
+
306
+ **Solution**: Amazon Linux is designed for server workloads. If you need Comet Browser's AI capabilities:
307
+
308
+ 1. Use the Perplexity AI API for programmatic access
309
+ 2. Access https://www.perplexity.ai from a separate desktop machine
310
+ 3. Install a desktop environment on Amazon Linux (not recommended for production servers)
311
+
312
+ **Problem**: Need AI-powered browsing for testing/automation
313
+
314
+ **Solution**: For automated web testing with AI capabilities, consider using:
315
+ - Perplexity API integration in your test scripts
316
+ - Headless Chrome/Chromium with Selenium or Playwright
317
+ - Other AI APIs (OpenAI, Anthropic) integrated with your automation framework
318
+
319
+ ---
320
+
321
+ ### Windows (winget)
322
+
323
+ #### Prerequisites
324
+
325
+ - Windows 10 version 1809 or later, or Windows 11
326
+ - winget package manager (included in Windows 10 2004+ and Windows 11)
327
+ - Administrator PowerShell or Command Prompt (for system-wide installation)
328
+
329
+ **Note**: Chocolatey does not currently have a Comet Browser package. Use winget for installation.
330
+
331
+ #### Installation Steps
332
+
333
+ Run the following command in PowerShell or Command Prompt:
334
+
335
+ ```powershell
336
+ winget install --id Perplexity.Comet --silent --accept-package-agreements --accept-source-agreements
337
+ ```
338
+
339
+ The `--silent` flag suppresses the installer UI, and the `--accept-*` flags prevent license agreement prompts, enabling fully non-interactive installation.
340
+
341
+ For system-wide installation (all users), run as Administrator:
342
+
343
+ ```powershell
344
+ winget install --id Perplexity.Comet --silent --scope machine --accept-package-agreements --accept-source-agreements
345
+ ```
346
+
347
+ **Alternative: Direct Installer Download**
348
+
349
+ For environments without winget, download and run the installer directly:
350
+
351
+ ```powershell
352
+ # Download the installer
353
+ Invoke-WebRequest -Uri "https://browser-download.perplexity.ai/windows-installers/6/comet_installer_latest.exe" -OutFile "$env:TEMP\comet_installer.exe"
354
+
355
+ # Run silent installation
356
+ Start-Process -FilePath "$env:TEMP\comet_installer.exe" -ArgumentList "--install --silent" -Wait
357
+
358
+ # Clean up
359
+ Remove-Item "$env:TEMP\comet_installer.exe"
360
+ ```
361
+
362
+ #### Verification
363
+
364
+ Open a new PowerShell or Command Prompt window, then verify the installation:
365
+
366
+ ```powershell
367
+ # Check if Comet is in the Start Menu
368
+ Get-StartApps | Where-Object { $_.Name -like "*Comet*" }
369
+ ```
370
+
371
+ Or verify by checking common installation paths:
372
+
373
+ ```powershell
374
+ # Check user installation
375
+ Test-Path "$env:LOCALAPPDATA\Comet\Comet.exe"
376
+
377
+ # Check system installation
378
+ Test-Path "C:\Program Files\Comet\Comet.exe"
379
+ ```
380
+
381
+ Launch Comet:
382
+
383
+ ```powershell
384
+ Start-Process "Comet"
385
+ ```
386
+
387
+ #### Troubleshooting
388
+
389
+ **Problem**: `winget: The term 'winget' is not recognized`
390
+
391
+ **Solution**: winget may not be installed or updated. Install or update the App Installer package:
392
+
393
+ ```powershell
394
+ # Open Microsoft Store to App Installer page
395
+ Start-Process "ms-windows-store://pdp/?ProductId=9NBLGGH4NNS1"
396
+ ```
397
+
398
+ After installation, close and reopen PowerShell.
399
+
400
+ **Problem**: Installation fails with "No applicable installer found"
401
+
402
+ **Solution**: Update winget to the latest version:
403
+
404
+ ```powershell
405
+ winget upgrade --id Microsoft.AppInstaller --silent --accept-package-agreements --accept-source-agreements
406
+ ```
407
+
408
+ **Problem**: Comet auto-starts with Windows and you want to disable it
409
+
410
+ **Solution**: Disable Comet from startup:
411
+
412
+ ```powershell
413
+ # Open Task Manager Startup tab
414
+ Start-Process "taskmgr" -ArgumentList "/7"
415
+ ```
416
+
417
+ Find Comet in the list and disable it. Alternatively, use Autoruns from Sysinternals for more control.
418
+
419
+ **Problem**: Installation requires Administrator but user lacks permissions
420
+
421
+ **Solution**: Use per-user installation (no Administrator required):
422
+
423
+ ```powershell
424
+ winget install --id Perplexity.Comet --silent --scope user --accept-package-agreements --accept-source-agreements
425
+ ```
426
+
427
+ ---
428
+
429
+ ### WSL (Ubuntu)
430
+
431
+ #### Prerequisites
432
+
433
+ - Windows 10 version 2004 or higher, or Windows 11
434
+ - WSL 2 with Ubuntu distribution installed
435
+ - Comet Browser installed on Windows host
436
+
437
+ **Critical Limitation**: Comet Browser does not support Linux, including WSL. Since WSL runs a Linux environment, you cannot install Comet Browser directly within WSL.
438
+
439
+ #### Installation Steps
440
+
441
+ **Install Comet Browser on the Windows host, not within WSL.**
442
+
443
+ **Step 1: Install Comet on Windows**
444
+
445
+ Open a Windows PowerShell (not WSL terminal) and run:
446
+
447
+ ```powershell
448
+ winget install --id Perplexity.Comet --silent --accept-package-agreements --accept-source-agreements
449
+ ```
450
+
451
+ **Step 2: Access from Windows Desktop**
452
+
453
+ After installation, launch Comet from the Windows Start Menu or desktop. WSL does not provide direct integration with Windows GUI applications like Comet Browser.
454
+
455
+ **Alternative: Access Perplexity AI within WSL**
456
+
457
+ For command-line access to AI capabilities within WSL, use the Perplexity web interface through a text-based approach or use the Perplexity API:
458
+
459
+ ```bash
460
+ # Install curl if needed
461
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update -y
462
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install -y curl
463
+
464
+ # Test connectivity to Perplexity
465
+ curl -sI https://www.perplexity.ai | head -1
466
+ ```
467
+
468
+ #### Verification
469
+
470
+ Verify Comet is installed on Windows (from Windows PowerShell):
471
+
472
+ ```powershell
473
+ Get-StartApps | Where-Object { $_.Name -like "*Comet*" }
474
+ ```
475
+
476
+ #### Troubleshooting
477
+
478
+ **Problem**: Want to use Comet features from within WSL
479
+
480
+ **Solution**: Comet Browser is a Windows GUI application. You have these options:
481
+
482
+ 1. Use Comet on Windows alongside your WSL development environment
483
+ 2. Access https://www.perplexity.ai from a browser within WSLg (if available)
484
+ 3. Use Perplexity API for programmatic access from WSL
485
+
486
+ **Problem**: WSLg shows Windows apps but Comet does not appear
487
+
488
+ **Solution**: WSLg only shows Linux GUI applications running in WSL. Windows applications like Comet must be launched from Windows, not from within WSL.
489
+
490
+ ---
491
+
492
+ ### Git Bash (Windows Installation)
493
+
494
+ #### Prerequisites
495
+
496
+ - Windows 10 or Windows 11
497
+ - Git Bash installed (comes with Git for Windows)
498
+ - Comet Browser installed on Windows (see Windows section)
499
+
500
+ **Important**: Git Bash runs within the Windows environment and does not have its own application installation mechanism. Comet Browser must be installed on Windows using winget or the direct installer.
501
+
502
+ #### Installation Steps
503
+
504
+ **Step 1: Install Comet on Windows**
505
+
506
+ From Git Bash, invoke PowerShell to run the installation:
507
+
508
+ ```bash
509
+ powershell.exe -Command "winget install --id Perplexity.Comet --silent --accept-package-agreements --accept-source-agreements"
510
+ ```
511
+
512
+ **Step 2: Verify Installation Path**
513
+
514
+ After installation, locate the Comet executable:
515
+
516
+ ```bash
517
+ # Check user installation
518
+ ls "$LOCALAPPDATA/Comet/Comet.exe" 2>/dev/null && echo "Found in user directory"
519
+
520
+ # Check common system paths
521
+ ls "/c/Program Files/Comet/Comet.exe" 2>/dev/null && echo "Found in Program Files"
522
+ ls "/c/Program Files (x86)/Comet/Comet.exe" 2>/dev/null && echo "Found in Program Files (x86)"
523
+ ```
524
+
525
+ **Step 3: Create Alias for Convenience**
526
+
527
+ Add an alias to your `~/.bashrc` for easy access:
528
+
529
+ ```bash
530
+ # Find where Comet is installed and add alias
531
+ if [ -f "$LOCALAPPDATA/Comet/Comet.exe" ]; then
532
+ echo 'alias comet="$LOCALAPPDATA/Comet/Comet.exe"' >> ~/.bashrc
533
+ elif [ -f "/c/Program Files/Comet/Comet.exe" ]; then
534
+ echo 'alias comet="/c/Program\ Files/Comet/Comet.exe"' >> ~/.bashrc
535
+ fi
536
+
537
+ # Reload bash configuration
538
+ source ~/.bashrc
539
+ ```
540
+
541
+ #### Verification
542
+
543
+ Verify Comet is accessible from Git Bash:
544
+
545
+ ```bash
546
+ # Using PowerShell to check
547
+ powershell.exe -Command "Get-StartApps | Where-Object { \$_.Name -like '*Comet*' }"
548
+ ```
549
+
550
+ Launch Comet from Git Bash (after setting up alias):
551
+
552
+ ```bash
553
+ comet &
554
+ ```
555
+
556
+ Or launch directly:
557
+
558
+ ```bash
559
+ start "" "Comet"
560
+ ```
561
+
562
+ #### Troubleshooting
563
+
564
+ **Problem**: PowerShell command fails from Git Bash
565
+
566
+ **Solution**: Ensure PowerShell is accessible. Git Bash should have access to Windows executables by default:
567
+
568
+ ```bash
569
+ which powershell.exe
570
+ ```
571
+
572
+ If not found, add Windows System32 to your PATH in `~/.bashrc`:
573
+
574
+ ```bash
575
+ export PATH="$PATH:/c/Windows/System32/WindowsPowerShell/v1.0"
576
+ ```
577
+
578
+ **Problem**: Comet alias does not work
579
+
580
+ **Solution**: Verify the installation path and update the alias accordingly:
581
+
582
+ ```bash
583
+ # Find Comet installation
584
+ find /c -name "Comet.exe" 2>/dev/null | head -5
585
+ ```
586
+
587
+ **Problem**: "the input device is not a TTY" error
588
+
589
+ **Solution**: Some Windows applications have TTY compatibility issues with mintty. Use the `winpty` prefix or launch via `start`:
590
+
591
+ ```bash
592
+ start "" "Comet"
593
+ ```
594
+
595
+ ---
596
+
597
+ ## Post-Installation Configuration
598
+
599
+ After installing Comet Browser on macOS or Windows, consider these configurations.
600
+
601
+ ### Sign In to Perplexity Account
602
+
603
+ On first launch, Comet prompts you to sign in or create a Perplexity account. This enables:
604
+
605
+ - Cloud sync of preferences and history
606
+ - Access to Pro AI features (if subscribed)
607
+ - Personalized AI responses
608
+
609
+ ### Import Browser Data
610
+
611
+ Comet can import data from other browsers on first launch:
612
+
613
+ 1. Bookmarks and favorites
614
+ 2. Browsing history
615
+ 3. Saved passwords
616
+ 4. Settings and preferences
617
+
618
+ Access this later via Comet's Settings menu.
619
+
620
+ ### Configure AI Features
621
+
622
+ Customize Comet's AI behavior through Settings:
623
+
624
+ - **AI Model Selection**: Choose between available models (GPT-4o, Claude, Sonar)
625
+ - **Search Preferences**: Configure default search behavior
626
+ - **Privacy Settings**: Control data sharing with AI models
627
+
628
+ ### Set as Default Browser
629
+
630
+ **macOS:**
631
+
632
+ ```bash
633
+ open -a "Comet"
634
+ # Navigate to Settings > Default browser > Make default
635
+ ```
636
+
637
+ **Windows:**
638
+
639
+ ```powershell
640
+ start ms-settings:defaultapps
641
+ ```
642
+
643
+ Navigate to Web browser and select Comet.
644
+
645
+ ### Disable Telemetry (Optional)
646
+
647
+ During setup or in Settings, you can opt out of anonymous usage data collection.
648
+
649
+ ---
650
+
651
+ ## Common Issues
652
+
653
+ ### Issue: Account Sign-in Popup on Every New Tab
654
+
655
+ **Symptoms**: Every new tab prompts you to sign in to your Perplexity account.
656
+
657
+ **Solution**: This is a known behavior in Comet. Sign in once to dismiss future prompts. If you prefer not to sign in, this popup will continue appearing but can be dismissed each time.
658
+
659
+ ### Issue: High Memory Usage
660
+
661
+ **Symptoms**: Comet uses significant RAM, especially with many tabs open.
662
+
663
+ **Solutions**:
664
+
665
+ 1. Close unused tabs
666
+ 2. Disable unused AI features in Settings
667
+ 3. Use tab grouping to manage memory more efficiently
668
+ 4. Restart Comet periodically to clear memory
669
+
670
+ ### Issue: Extensions Not Working
671
+
672
+ **Symptoms**: Chrome Web Store extensions fail to install or function.
673
+
674
+ **Solution**: Comet supports Chrome extensions. Install from the Chrome Web Store:
675
+
676
+ 1. Navigate to `chrome.google.com/webstore`
677
+ 2. Find your extension
678
+ 3. Click "Add to Comet" (or similar)
679
+
680
+ If issues persist, check Comet's extension settings for compatibility options.
681
+
682
+ ### Issue: AI Features Not Responding
683
+
684
+ **Symptoms**: AI assistant does not respond or shows errors.
685
+
686
+ **Solutions**:
687
+
688
+ 1. Check internet connectivity
689
+ 2. Verify Perplexity account status
690
+ 3. Check if you have exceeded daily AI query limits (free tier: 5 Pro queries/day)
691
+ 4. Try signing out and back in
692
+
693
+ ### Issue: Comet Crashes on Startup
694
+
695
+ **Symptoms**: Comet opens briefly and immediately closes.
696
+
697
+ **Solutions**:
698
+
699
+ 1. Clear the user profile cache:
700
+
701
+ **macOS:**
702
+ ```bash
703
+ rm -rf ~/Library/Application\ Support/Comet/Default/Cache
704
+ rm -rf ~/Library/Application\ Support/Comet/Default/Code\ Cache
705
+ ```
706
+
707
+ **Windows (PowerShell):**
708
+ ```powershell
709
+ Remove-Item -Recurse -Force "$env:LOCALAPPDATA\Comet\User Data\Default\Cache"
710
+ ```
711
+
712
+ 2. Reinstall Comet if crashes persist.
713
+
714
+ ### Issue: Sync Not Working Between Devices
715
+
716
+ **Symptoms**: Settings and data do not sync between macOS and Windows installations.
717
+
718
+ **Solution**: Ensure you are signed into the same Perplexity account on all devices. Sync functionality requires an active internet connection and may take a few minutes to propagate changes.
719
+
720
+ ---
721
+
722
+ ## References
723
+
724
+ - [Comet Browser Official Page](https://www.perplexity.ai/comet)
725
+ - [Comet Download Page](https://www.perplexity.ai/download-comet)
726
+ - [Perplexity Help Center - Getting Started with Comet](https://www.perplexity.ai/help-center/en/articles/11172798-getting-started-with-comet)
727
+ - [Perplexity Help Center - System Requirements](https://www.perplexity.ai/help-center/en/articles/11187553-system-requirements)
728
+ - [Homebrew Cask - comet](https://formulae.brew.sh/cask/comet)
729
+ - [winget Package - Perplexity.Comet](https://winstall.app/apps/Perplexity.Comet)
730
+ - [Perplexity AI Web Interface](https://www.perplexity.ai/)
731
+ - [Tom's Guide - Comet Browser Review](https://www.tomsguide.com/ai/perplexity/perplexitys-ai-browser-comet-is-now-free-for-everyone-heres-how-to-download-it)