reinstall chrony and setup NTPsudo apt-get install rsyslog resolvconf
setup DNS by adding nameserver a.b.c.d to /etc/resolvconf/resolv.conf.d/head
then run
sudo resolvconf --enable-updatessudo resolvconf -u
Add RMS virtualenv to bashrc:egrep "~/vRMS/bin/activate" ~/.bashrc if [ $? == 1 ] ; then echo "source ~/vRMS/bin/activate" >> ~/.bashrc echo "cd ~/source/RMS" >> ~/.bashrcfi
===============================
error: externally-managed-environment
× This environment is externally managed
On Bookworm, the base Python installation is managed by Debian and can’t be changed. To update pip one would do “apt install –upgrade python3-pip” and it would only succeed if Debian have updated the base repo.
Which explains why you also need to upgrade pip in the virtualenv once created 🙂