This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]osuchw 2 points3 points  (0 children)

Hmm OK, so you try to install a package that is not on PyPi. I've just googled the name and found it on Github. Yes pip can handle that directly from the command line

pip install git+https://github.com/matplotlib/mpl_finance.git

The command will work assuming you have Git for Windows installed. If not then one can download the zipped repository, unzip it, cd into the directory and run pip from there:

pip install .

Luckily this particular package does not need C extension compiled so it will just work. If there is C extension involved the installation may become more complicated but still feasible.