-
Notifications
You must be signed in to change notification settings - Fork 18
missing ipython dependency #344
Copy link
Copy link
Closed
Description
Description
ipython dependency not satisfied when installing data-describe with pip
- install data-describe with pip
- start python shell
- import data-describe (this step throws an error)
Steps to Reproduce
- create conda environment:
conda create -n dd-requirements-check
conda activate dd-requirements-check
- use pip to install data-describe:
conda install pip
pip install -U "data-describe==0.1.0b1"
- import data-describe:
(dd-requirements-check) daniel@Daniels-MacBook-Pro Code % python
Python 3.8.5 (default, Sep 4 2020, 02:22:02)
[Clang 10.0.0 ] :: Anaconda, Inc. on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import data_describe as dd
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/daniel/anaconda3/envs/dd-requirements-check/lib/python3.8/site-packages/data_describe/__init__.py", line 29, in <module>
from data_describe.misc.load_data import load_data # noqa: F401
File "/Users/daniel/anaconda3/envs/dd-requirements-check/lib/python3.8/site-packages/data_describe/misc/load_data.py", line 6, in <module>
from data_describe.compat import _compat, _requires
File "/Users/daniel/anaconda3/envs/dd-requirements-check/lib/python3.8/site-packages/data_describe/compat/__init__.py", line 16, in <module>
from data_describe.compat._notebook import _IN_NOTEBOOK # noqa: F401
File "/Users/daniel/anaconda3/envs/dd-requirements-check/lib/python3.8/site-packages/data_describe/compat/_notebook.py", line 4, in <module>
from IPython import get_ipython
ModuleNotFoundError: No module named 'IPython'
>>>
Your Environment
- data describe version: 0.1.0b1
- Python version: 3.8.5
- Operating System: MacOS 10.15.6
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working