Zahra
Zahra

Reputation: 391

How to add package mahotas in anaconda

I want to add mahotas in my package of anaconda, so I installed this file mahotas-1.4.3-cp35-cp35m-win_amd64.whl from http://www.lfd.uci.edu/~gohlke/pythonlibs/ then i put it in C:\Anaconda3\Scripts But when I ran this command pip install mahotas-1.4.3-cp35-cp35m-win_amd64.whl I got this error enter image description here

Upvotes: 0

Views: 2074

Answers (1)

Jeru Luke
Jeru Luke

Reputation: 21233

Since you are using Anaconda 3, the simplest and easiest way would be to use the conda command.

First open the Anaconda Prompt console window. It is always advisable to update your Anaconda library. To do that enter this in the console window:

conda update conda

Now to install mahotas using the following command:

conda install mahotas

Upvotes: 1

Related Questions