I've pyhash installed already, why does it always say that it can't find the module? Can anyone help me?
here is my .travis.yml:
language: python
before_install:
    - sudo apt-get -qq update
    - sudo apt-get install libboost-all-dev
python:
    - "2.7"
install:
    - sudo pip install pyhash
script: py.test
And this is my project directory:
/bloom
    __init__.py
    /src
       __init__.py
       f1.py
       f2.py
    /test
       __init__.py
       test_f1.py
       test_f2.py
The error message is:
ImportError: No module named pyhash
But I've seen it installed in the cmd window.
 
     
    