Skip to content

missing ipython dependency #344

@dandawg

Description

@dandawg

Description

ipython dependency not satisfied when installing data-describe with pip

  1. install data-describe with pip
  2. start python shell
  3. import data-describe (this step throws an error)

Steps to Reproduce

  1. create conda environment:
conda create -n dd-requirements-check
conda activate dd-requirements-check
  1. use pip to install data-describe:
conda install pip
pip install -U "data-describe==0.1.0b1"
  1. 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

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions