pydot icon indicating copy to clipboard operation
pydot copied to clipboard

Unknown distribution option: 'install_requires'

Open scribu opened this issue 10 years ago • 1 comments

$ python3 setup.py install
/usr/local/Cellar/python3/3.4.1_1/Frameworks/Python.framework/Versions/3.4/lib/python3.4/distutils/dist.py:260: UserWarning: Unknown distribution option: 'install_requires'
  warnings.warn(msg)

Shouldn't pyparsing be in the dependencies dict?

scribu avatar Jan 17 '15 14:01 scribu

You should be using pip to install the package, not distutils.

Try this:

python -m pip install ./pydot

Darthfett avatar Sep 01 '15 22:09 Darthfett