Issue with installing pysftp with pip - python

I am trying to install the module pysftp onto my Rapspberry Pi, but I get an error returned when
sudo pip install pysftp
is run.
This is the error I get:
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-U1R0_9/pynacl
I have tried running pip install --upgrade setuptools but this does not fix the error.
My python version is 3.4.2, and my pip version is 9.0.1 (python 3.4) if that helps.
I hope I have provided enough information to be useful, I tried as much as I can but nothing seems to work.

Related

Jupyter install returns “python setup.py egg_info” failed with error code 1

I'm new to Python and have been trying to install Jupyter packages with pip.
My command line throws me this Exception
Command "python setup.py egg_info" failed with error code 1 in
C:\Users\TOSHIB~1\AppData\Local\Temp\pip-install-spdc68do\tornado\
Happens when I do pip install jupyter. How can I solve this?
I already did python -m pip install --upgrade pip and pip install --upgrade setuptools.
Looks like the root cause is that jupyter depends on tornado, but the tornado install is failing.
It could be a lib64 issue and pip install -U wheel might do the trick.
Could also just be down to tornado requiring a C/C++ compiler you don't have installed. Anaconda comes with jupyter notebook and has a simple windows installer, so that seems like the easiest path.

Can't install Matplotlib in python 3.7

For install matplotlib in windows 10 64 bit machine get error showing
python setup.py egg_info" failed with error code 1 in C:\Users\Animus\AppData\Local\Temp\pip-build-urqbuxb_\unroll\
please help
Forst of all make sure you have pip working. To install pip please follow the link Pip install and then update the setup
And try:
python -mpip install -U pip
python -mpip install -U matplotlib
and if does not work then use following
pip install --upgrade setuptools
I had the same problem. Newly installed windows, only python 3.7.0 installed. No security software installed.
Those upgrade command do not work at all.
After rollback to 3.6.5, they could be installed normally.

I am getting this error when I am trying to install Command "python setup.py egg_info" failed with error code 1

I am trying to install countvar package but I am always receiving the above error. I have updated my installation tools but I still receiving it.
Most of the times this is resolved by the following approach
python -m pip install --upgrade pip
pip install "package-name"

scikit_image library is not installing

I am trying to install scikit-image library in python 3.4.4on windows. I am using the following command:
pip install scikit-image
I am installing it in the following path
C:\Python34\Scripts
It's not working showing the following error:
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Usman\AppData\Local\Temp\pip-build-utv6_a2u\scikit-image\
I tried also installing it through the .whl file,, but still it's not working.
Pip version is
pip 9.0.1
Please tell me what should I do?
Try to run one of the following and than try to install again the requested library.
pip install --upgrade setuptools or easy_install -U setuptools
As setuptools contains a lot of important files including egg files, it can cause problems when it's not updated\installed.

pip install pyzmail ERROR message

I use Python 3.5.2.
I installed imapclient with no problem pip install imapclient. However when I tried to install pyzmail, pip install pyzmail, I received error message below:
ImportError: No module named '_markerlib'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\J
\AppData\Local\Temp\pip-build-ntukh55u\distribute\
To those who find this thread and have switched to Python 3.6, this pyzmail fork enabling pip install on Python 3.6 worked very well for me :
pip install pyzmail36
I had the same problem, and resolved it using: easy_install pyzmail
I just had this issue and solved it this way: type pip install setuptools==20.1.1, then try pip install pyzmail again. I had the latest version of setuptools (version 34.something) and it seems this version gets buggy when installing pyzmail.
use pip install pyzmail36
This claims to be "a fork which is meant to be pip installable on python 3.6+".
I had the same issue when using Python 3.8.5 on Windows 10.
After successfully installing imapclient, I used this command, which worked fine:
pip install --user pyzmail36==1.0.4
if you have already solve the problems , I hope 'yes' , but it is very easy you need just to writte
pip install --user pyzmail36*
It will install properly the last version ! but take a look at your python version ---> python --version because sometimes it needs to be update .

Categories

Resources