Update installation instructions for Langflow (#1623)

* Update installation instructions for Langflow

* Remove unused imports and fix broken links
This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-05 16:10:48 -03:00 committed by GitHub
commit 58d9086ce7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,8 @@ You can install **Langflow** with [pipx](https://pipx.pypa.io/stable/installatio
Pipx can fetch the missing Python version for you, but you can also install it manually.
```bash
pip install langflow -U
# Remember to check if you have Python 3.10 installed
python -m pip install langflow -U
# or
pipx install langflow --python python3.10 --fetch-missing-python
```
@ -39,7 +40,7 @@ pipx install langflow --python python3.10 --fetch-missing-python
Or you can install a pre-release version using:
```bash
pip install langflow --pre --force-reinstall
python -m pip install langflow --pre --force-reinstall
# or
pipx install langflow --python python3.10 --fetch-missing-python --pip-args="--pre --force-reinstall"
```