Error When i Try to install any pkg with pip - python

I wish some one can help me. When I try to install any pkg with pip, I get the following error:
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
I tried many solutions like upgrade the setuptools but it's not working.
Please help and thanks in advance.

Update setup tools pip install -U setuptools Or pip3 if you're using Python3

Related

No module named 'wptools' even after pip install wptools

I am using jupyter notebook and tried to import wptools. ModuleNotFoundError:No module named 'wptools' popped up, so I tried
pip install wptools
It gave me a really long error message including:
Command errored out with exit status 10: python setup.py egg_info Check the logs for full command output.
ERROR: Command errored out with exit status 10
ERROR: Command errored out with exit status 1
WARNING: You are using pip version 21.2.4; however, version 22.2.2 is available.
You should consider upgrading via the 'C:\Prgram Files\Python310\python.exe -m pip install --upgrade pip' command.
I thought this package comes pre-installed with anaconda. What is the issue with my jupyter notebook environment and How can I fix this issue? Please advise.

ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. when trying to install pycurl with pip [duplicate]

I'm trying to install pyspider on Debian GNU/Linux 9. Tried installing with pip and pip3, checked libevent-dev, libpython-dev, python-dev, distribute, ez_setup, and I still get the following message from pip/pip3 install pyspider:
Command "python setup.py egg_info" failed with error code 1 in tmp/pip-build-<randomcharacters>/pycurl/
Right above that error message, it says this:
__main__.ConfigurationError: Could not run curl-config: [Errno 2] No such file or directory: 'curl-config'
Any ideas?
pyspider requires pycurl which in turn requires libcurl. So install libcurl first:
apt install libcurl4 libcurl4-openssl-dev

Problem installing scikit-survival in Google Colab

I am facing a problem to install scikit-survival in Google Colaboratory. Everytime it says:
pip install scikit-survival
Collecting scikit-survival
Using cached https://files.pythonhosted.org/packages/91/f0/047ce90bb831ab34ca287d1d23f0c61b6546cd89494566898c0e17516990/scikit-survival-0.15.0.post0.tar.gz
Installing build dependencies ... done
Getting requirements to build wheel ... error
ERROR: Command errored out with exit status 1: /usr/bin/python3 /usr/local/lib/python3.7/dist-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /tmp/tmpncdknf_f Check the logs for full command output.
However, I don't get the Error. I've installed the newest Python version and any other pip install command works. Does anyone has an idea?
Kind regards,
Hashriama
The error is with different versioning and something related to it. Try the following in Colab.
!pip install --upgrade pip
!pip uninstall --yes --quiet osqp
!pip install -U scikit-survival
This should do the job.

Command "python setup.py egg_info" failed with error code 1 in C:\Users\ELYSSU~1\AppData\Local\Temp\pip-build-7ado9ytn\cryptography\

I am trying to install scrapy in my Windows system, but It is showing me the below error:-
> Command "python setup.py egg_info" failed with error code 1 in C:\Users\ELYSSU~1\AppData\Local\Temp\pip-build-7ado9ytn\cryptography\
Enter the following command and install again to install without any problems.
pip install --upgrade --ignore-installed pip setuptools
That means your pip3 needs to be updated. You can process the upgrade command and upgrade the setuptools then it could work.

How to use pip3 install psycopg2?

I ran into this ERROR when running "pip3 install psycopg2" on Mac.
I would like to install psycopg2 for the first time.
...
ld: library not found for -lssl
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: command 'gcc' failed with exit status 1
----------------------------------------
ERROR: Failed building wheel for psycopg2
Running setup.py clean for psycopg2
Failed to build psycopg2
Installing collected packages: psycopg2
Running setup.py install for psycopg2 ... error
ERROR: Command errored out with exit status 1:
...
I tried pip, installing from GitHub. However, both failed.
Can someone help me, please? I really appreciate!
Just upgrade psycopg2 version to 2.7.6 and it will work fine with python3:
pip3 install psycopg2==2.7.6
I have finally got things working from browsing the above links shared by these awesome people who commented on my post.
brew upgrade postgresql
sudo pip install psycopg2
Thank you all for helping!
Installing: Open terminal (editor or local)
$ brew install postgresql
$ brew services start postgresql
And go to sql promp for create a db (don't leave terminal):
$ psql postgres
CREATE DATABASE ..
CREATE USER
GRANT ...

Categories

Resources