Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,26 @@ If you don't have Homebrew installed, or are running Linux:
```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/AssemblyAI/assemblyai-cli/main/install.sh)"
```
Load the shell configuration file
```bash
case "$SHELL" in
*bash*)
if [ -f "$HOME/.bashrc" ]; then
# if the shell contains "bash" and .bashrc is present
source $HOME/.bashrc
fi
;;
*zsh*)
if [ -f "$HOME/.zshrc" ]; then
# if the shell contains "zsh" and .zshrc is present
source $HOME/.zshrc
fi
;;
*)
echo "Unknown shell or required configuration file not found."
;;
esac
```

### Windows

Expand Down