Bolt python library error

While installing bolt python Library on my VMware hosted ubuntu VPS, I am getting following message after executing sudo apt-get-y update command.error%20ubuntu

The message is because somehow you still have the cdrom entry in your sources.list file, you can check the content of the file using:

grep -v ā€˜#ā€™ /etc/apt/sources.list

Just remove the cdrom entry from the sources.list file. This can be done easily:

sudo sed -i ā€˜/cdrom/dā€™ /etc/apt/sources.list

This should take care of the problem.

1 Like

@ghagaresudhir please, mark accepted if my solution helped you!