You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It feels like a similar error that is thrown when you attempt to cp a directory without specifying --recursive. I recommend a fix according to this Stackoverflow thread
the following changes on lines 5-9 in setup.py seems to successfully install the library
-package_data = ['resources/*']+package_data = ['resources/*.*']
os.chdir('medleydb')
-package_data.extend(['{0}/*'.format(root)+package_data.extend(['{0}/*.*'.format(root)
for root, dirs, files in os.walk('data')])
Following installation I ran python tests/test_* from the medleydb source root directory
and no errors were returned, suggesting that everything was installed correctly? Anyway I have a branch ready to merge changes to master if you like
When running
pip install .
inside the root medleydb directory I get this errorIt feels like a similar error that is thrown when you attempt to
cp
a directory without specifying--recursive
. I recommend a fix according to this Stackoverflow thread--- Relevant Specifications ---
Ubuntu 16.04
Python 2.7.12
setuptools 20.7.0
The text was updated successfully, but these errors were encountered: