Skip to content
rzellem edited this page Aug 6, 2019 · 28 revisions

URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:833)>

If you get the error above, follow the instructions on this website: https://timonweb.com/tutorials/fixing-certificate_verify_failed-error-when-trying-requests_html-out-on-mac/

The second command has worked for most users.

ModuleNotFoundError: No module named BLAH

If you get the error above, it means that not all of the Python packages to run EXOTIC have been installed.

The recommend installation method is to install within ipython itself. After launching ipython (by typing ipython at the command line), type in the following two lines: import sys !{sys.executable} -m pip install BLAH

where you replace BLAH with the name of your missing package. If you've recently updated python or didn't exactly follow the install instructions with Anaconda, you will probably need to install these remaining packages. No worries.

Clone this wiki locally