How to add package mahotas in anaconda

2k Views Asked by At

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

1

There are 1 best solutions below

1
Jeru Luke On BEST ANSWER

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