When I am running through PyCharm with setup.py, I am getting below error - I was also looking either some video or developers startup guide which can suggest how to compile, build, run and debug orange3 with IDE like PyCharm /usr/local/bin/python3.7 /Users/vivekagarwal/code-repo/orange3/setup.py
error: could not expand include path '~/.gitcinclude'
fatal: bad config line 44 in file /usr/local/git/etc/gitconfig
Warning: 'keywords' should be a list, got type 'tuple'
Warning: 'classifiers' should be a list, got type 'tuple'
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/setuptools/dist.py:406: UserWarning: The version specified ('3.21.0.dev0+') is an invalid version, this may not work as expected with newer versions of setuptools, pip, and PyPI. Please see PEP 440 for more details.
"details." % self.metadata.version
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: no commands supplied
Process finished with exit code 1
/usr/local/bin/python3.7 /Users/test/code-repo/orange3/setup.py develop
Traceback (most recent call last):
File "/Users/vivekagarwal/code-repo/orange3/setup.py", line 12, in <module>
from numpy.distutils.core import setup
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/init.py", line 142, in <module>
from . import core
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/core/init.py", line 40, in <module>
from . import multiarray
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/core/multiarray.py", line 12, in <module>
from . import overrides
File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/numpy/core/overrides.py", line 46, in <module>
""")
RuntimeError: implement_array_function method already has a docstring
Process finished with exit code 1
pipenv install -r requirements.txt
, is that sufficient? What is the -e
flag for in pip install?