If you look closely, the error says that no module of name Crypto.Cipher, it seems that you have not installed pycrypto. Run this command:
pip install pycrypto
If you are using linux then add sudo at the beginning of the command. It will install pycrypto in your system for you to use.
You can refer to our Python online course for more information.