Closed Bulwagga closed 1 year ago
The ordering of the install ends up attempting to create the venv before python3-venv is installed.
I ended up inserting
echo $sudoPW | sudo -S apt install -y python3-dev python3-pip python3-venv
just before the block where the ovos venv is created, but there may better ways to fix this. Thanks
Can't think of a much better way than to install the packages it needs before they are used.
Fixed with this
The ordering of the install ends up attempting to create the venv before python3-venv is installed.
I ended up inserting
echo $sudoPW | sudo -S apt install -y python3-dev python3-pip python3-venv
just before the block where the ovos venv is created, but there may better ways to fix this. Thanks