JuliaPy / Conda.jl

Conda managing Julia binary dependencies
Other
173 stars 57 forks source link

error when Conda.add("matplotlib") #143

Open brioglade opened 5 years ago

brioglade commented 5 years ago

failed process: 'C:\Users\chang.julia\conda\3\Scripts\conda.exe' install -y matplotlib

stevengj commented 5 years ago

What is the full error message?

stevengj commented 5 years ago

But when I use Conda.add("matplotlib","C:\Users\chang.julia\conda\3\Scripts\conda.exe") or else,it turns out error.

That's not how you use Conda.add — you don't pass paths. (And you have to escape backslashes in strings anyway.)

The correct command is:

using Conda
Conda.add("matplotlib")

Note that it is case-sensitive (matplotlib, not Matplotlib).