ImSoErgodic / py-upset

A pure-python implementation of the UpSet suite of visualisation methods by Lex, Gehlenborg et al.
314 stars 57 forks source link

Module not found error #12

Open shefali86 opened 7 years ago

shefali86 commented 7 years ago

I am running python via Jupyter notebook. I am currently running Python 3 kernel. I did pip install pypset and it seemed that all requirements were satisfied: Requirement already satisfied: pyupset in c:\users\ssetia\anaconda2\lib\site-packages Requirement already satisfied: numpy in c:\users\ssetia\anaconda2\lib\site-packages (from pyupset) Requirement already satisfied: matplotlib in c:\users\ssetia\anaconda2\lib\site-packages (from pyupset) Requirement already satisfied: pandas in c:\users\ssetia\anaconda2\lib\site-packages (from pyupset) Requirement already satisfied: six>=1.10 in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset) Requirement already satisfied: python-dateutil in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset) Requirement already satisfied: functools32 in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset) Requirement already satisfied: pytz in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset) Requirement already satisfied: cycler>=0.10 in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset) Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=1.5.6 in c:\users\ssetia\anaconda2\lib\site-packages (from matplotlib->pyupset)

Now when I do "import module pyupset" I still get Module not found error:

ModuleNotFoundError Traceback (most recent call last)

in () ----> 1 import pyupset as pyu ModuleNotFoundError: No module named 'pyupset'
popher commented 7 years ago

Looks like you installed it into anaconda2 - is that definitely your python 3 environment?