From 58d9086ce7b34169309dff65cf0d534b25d77650 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 5 Apr 2024 16:10:48 -0300 Subject: [PATCH] Update installation instructions for Langflow (#1623) * Update installation instructions for Langflow * Remove unused imports and fix broken links --- docs/docs/index.mdx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/docs/index.mdx b/docs/docs/index.mdx index 63c14e91c..a00286847 100644 --- a/docs/docs/index.mdx +++ b/docs/docs/index.mdx @@ -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" ```