Sublime Forum

Probleme with Matplotlib

#1

Hello,

I’m a real beginner, so I don’t know how to solve this.

I need to use Python for my course. I installed Anaconda and Sublime Text 3. But when I try to run something with Matplotlib, it doesn’t work. But Matplotlib is installed (I checked the list of packages).
I obtain this error : DLL load failed: The specified module could not be found.

Thank you :slight_smile:

0 Likes

#2

@OdatNurd, Hi i have the same issue please would you advise/support hw to solve.

sys setup:
Anaconda3 python
created conda env list
myenv1
myenv2
.
.

Wanted to run terminus build sys with specific env activation i.e “myenv1”

The following is the >> pyterm.sublime-build:

{
“target”: “terminus_open”,
“cancel”: “terminus_cancel_build”,
“title”:“Build Output”,
“auto_close”: false,
“focus”: true,
“timeit”:true,
“post_window_hooks”:[
[“carry_file_to_pane”,{“direction”:“right”}]
],

"shell_cmd": "C:\\Users\\me\\anaconda3\\python.exe -u \"$file\"",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",

"env": {"PYTHONIOENCODING": "utf-8"},

"variants":
[
    {
        "name": "Syntax Check",
        "shell_cmd": "python -m py_compile \"${file}\"",
    }
]

}

Thank you all

0 Likes

#3

What exactly doesn’t work? If you use the command from shell_cmd in a windows command prompt, does it do what you expect?

0 Likes