Basic LangChain solutions
- Ensure that you have Poetry installed on your system. You can install it using the following command:
curl -sSL https://install.python-poetry.org | python3 -
- Add Poetry to path
- On Linux
echo $'\nexport PATH="/home/jovyan/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
- On Mac
echo $'\nexport PATH="/home/jovyan/.local/bin:$PATH"' >> ~/.zshrc
source ~/.bashrc
- Check result
poetry --version
conda create --prefix ./.venv -y
conda activate ./.venv
poetry install --no-root
streamlit run RestaurantGenerator/main.py
Open the browser and navigate to http://localhost:8501/
conda deactivate