I am attempting to install a c++ / python
based library that offers musical onset detection. Typically, I run sudo pip install foo
and cmd+tab
over to PyCharm and type import ...
and I get auto-completion as I noticed the package resides in Library/Python/2.7/site-packages
. However, after completing the installation process for this library, no such auto-complete is there.
The complete list of instructions entail using cmake as well as running a setup script for python. I am unsure about the underlying architectural details (whether its a C++ lib with a python binding, or something..) and whether that plays into my problem. Here, the installation process is:
It seems that all the cmake / c++
building went of with few warnings and no errors, so that is fine.. and so did the python setups.. I do notice a new python package in the 2.7/site-packages dir in the egg format. Yet import mod.. sees nothing. Just compilation errors.
Is there anything I could have done wrong in the installation process or in the importing that would solve this problem? Any help in advance is greatly appreciated. Let me know if more details are needed to diagnosis the problem.