Attempted to follow instructions, was unsuccessful. Running on ubuntu 24.04
I can't progress further than uv install as that errors out. Steps so far:
Installing prerequisites
sudo apt update
PRE - nodejs
sudo apt install nodejs
PRE - NPM
sudo apt install npm
PRE - Python
sudo apt install python3.12-full
PRE - Apperantly need this for pip
sudo apt install python3-pip
PRE - UV
curl -LsSf https://astral.sh/uv/install.sh | sh
PRE - Python virtual environment
python -m venv my_env
Front end install
cd frontend
FE - install dependencies (uses pnpm, npm or yarn depending on your setup)
npm install
Runs dev in background and returns process ID.
npm run dev &
back end install
cd ..
cd backend
uv install doesn't exist but uv pip install does
uv pip install # Doesn't work, requests arguments - uv pip install <PACKAGE|--requirements |--editable |--group > -
Attempted to follow instructions, was unsuccessful. Running on ubuntu 24.04
I can't progress further than uv install as that errors out. Steps so far:
Installing prerequisites
sudo apt update
PRE - nodejs
sudo apt install nodejs
PRE - NPM
sudo apt install npm
PRE - Python
sudo apt install python3.12-full
PRE - Apperantly need this for pip
sudo apt install python3-pip
PRE - UV
curl -LsSf https://astral.sh/uv/install.sh | sh
PRE - Python virtual environment
python -m venv my_env
Front end install
cd frontend
FE - install dependencies (uses pnpm, npm or yarn depending on your setup)
npm install
Runs dev in background and returns process ID.
npm run dev &
back end install
cd ..
cd backend
uv install doesn't exist but uv pip install does
uv pip install # Doesn't work, requests arguments - uv pip install <PACKAGE|--requirements |--editable |--group > -