OpenVoiceOS / raspOVOS

Run ovos ontop of RaspberryPiOS
MIT License
39 stars 15 forks source link

manual_user_install.sh fails on install with clean RasPI OS Lite (64-bit) #88

Closed Bulwagga closed 1 year ago

Bulwagga commented 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

builderjer commented 1 year ago

Can't think of a much better way than to install the packages it needs before they are used.

builderjer commented 1 year ago

Fixed with this