I installed hypothesis on Anaconda with conda install hypothesis. I use Python 3.7 on Spyder.
In a file called testing.py I wrote
from hypothesis import given
import hypothesis.strategies as st
but when I run the file, it says:
ImportError: No module named 'hypothesis'
How can I do to fix this problem?