e768098d0e
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
Flake8 Lint / flake8 (push) Has been cancelled
Spell check CI / Spell_Check (push) Has been cancelled
32 lines
950 B
Markdown
32 lines
950 B
Markdown
# Curl Install Script Information
|
|
|
|
The scripts in this directory are used for installing through curl and they point to the packages on PyPI.
|
|
|
|
## Install or update promptflow
|
|
|
|
curl https://promptflowartifact.blob.core.windows.net/linux-install-scripts/install | bash
|
|
|
|
The script can also be downloaded and run locally. You may have to restart your shell in order for the changes to take effect.
|
|
|
|
## Uninstall promptflow
|
|
|
|
Uninstall the promptflow by directly deleting the files from the location chosen at the time of installation.
|
|
|
|
1. Remove the installed CLI files.
|
|
|
|
```bash
|
|
# The default install/executable location is the user's home directory ($HOME).
|
|
rm -r $HOME/lib/promptflow
|
|
```
|
|
|
|
2. Modify your `$HOME/.bash_profile` or `$HOME/.bashrc` file to remove the following line:
|
|
|
|
```text
|
|
export PATH=$PATH:$HOME/lib/promptflow/bin
|
|
```
|
|
|
|
3. If using `bash` or `zsh`, reload your shell's command cache.
|
|
|
|
```bash
|
|
hash -r
|
|
``` |