Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding missing dependencies #84

Closed
wants to merge 3 commits into from

Conversation

mayankmahajan
Copy link

Was getting this issue:

$ python run.py
Traceback (most recent call last):
File "run.py", line 6, in
from app import APP
File "<user.dir>/experiments/jvm-profiler/flamescope/app/init.py", line 34, in
from app.views.flame_graph import MOD_FLAME_GRAPH
File "<user.dir>/experiments/jvm-profiler/flamescope/app/views/flame_graph.py", line 21, in
from app.controllers.flame_graph import generate_flame_graph
File "<user.dir>/experiments/jvm-profiler/flamescope/app/controllers/flame_graph.py", line 22, in
from app.perf.flame_graph import perf_generate_flame_graph
File "<user.dir>/experiments/jvm-profiler/flamescope/app/perf/flame_graph.py", line 25, in
from app.common.fileutil import get_file
File "<user.dir>/experiments/jvm-profiler/flamescope/app/common/fileutil.py", line 22, in
import magic
File "<user.dir>/.pyenv/versions/my-virtual-env-3.7.3/lib/python3.7/site-packages/magic.py", line 181, in
raise ImportError('failed to find libmagic. Check your installation')
ImportError: failed to find libmagic. Check your installation

@@ -8,3 +8,4 @@ protobuf==3.6.1
python-magic==0.4.15
six==1.12.0
Werkzeug==0.14.1
python-libmagic==0.4.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two different libraries. python-magic==0.4.15 should suffice.

@dmatesic
Copy link

dmatesic commented Dec 4, 2019

I have the same error (python v3.6.5). This fixed it for me: Yelp/elastalert#1927 (comment)

@spiermar
Copy link
Contributor

spiermar commented Dec 5, 2019

python-magic-bin states that "This is a fork of the python-magic library but with binary packages for windows and mac.". Problem is not the python library, but you're missing libmagic on your system. It should be installed separately.
Not sure about python-libmagic, but seems abandoned. Closing the PR.

@spiermar spiermar closed this Dec 5, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants