Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing module in python Annoconda "python setup.py egg_info" failed with error code 1

I am trying to install skdata module in Annoconda 2.2 verison using

conda install skdata

But its throwing error as follows,

Error: Package missing in current linux-32 channels: - skdata

Also its the same when I tried with

pip install skdata

Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-ivxxkvsc/skdata/

I tried many solutions as

 python ez_setup.py
 pip install --upgrade setuptools 
 sudo pip install --upgrade setuptools

None of these helping me to get rid of the error this error :Command "python setup.py egg_info" failed with error code 1

 python --version
Python 3.4.4 :: Anaconda 2.2.0 (32-bit)

Any help is much appreciated

like image 723
user1017373 Avatar asked May 01 '26 19:05

user1017373


1 Answers

I had a similar issue and everytime I tried to launch Anaconda Navigator, it errored out. I tried everything but nothing seemed to work. Finally, when I was on the verge of giving up, I added the PATH to the pyqt5 and pyside folder and that did it for me. Everything got sorted, my package got installed and even Spyder started working. Took me 4 long days, but I finally got Anaconda and Spyder to work. Maybe you'll have some luck too.

like image 109
Pranita Avatar answered May 03 '26 08:05

Pranita