issue installing lxml on python3.5 on windows - python-3.5

I am trying to install lxml from lxml-3.6.1-cp35-cp35m-win32.whl and then for installing I am giving command "pip install lxml-3.6.1-cp35-cp35m-win32.whl" on cmd and am getting error:
lxml-3.6.1-cp35-cp35m-win32.whl is not supported wheel on this platform.
how can I install the lxml?

Related

I'm encountering an error while installing turicreate module on wsl, is there any requirements I'm missing?

whenever I try to install turicreate module on wsl it's showing an error like this
`Collecting turicreate
Using cached turicreate-6.4.tar.gz (1.9 kB)
Preparing metadata (setup.py) ... done
Using legacy 'setup.py install' for turicreate, since package 'wheel' is not installed.
Installing collected packages: turicreate
Running setup.py install for turicreate ... error
error: subprocess-exited-with-error
× Running setup.py install for turicreate did not run successfully.
│ exit code: 1
╰─> [30 lines of output]
running install
/root/turitest/venv/lib/python3.10/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
==================================================================================
TURICREATE ERROR
If you see this message, pip install did not find an available binary package
for your system.
Supported Platforms:
* macOS 10.12+ x86_64.
* Linux x86_64 (including WSL on Windows 10).
Support Python Versions:
* 2.7
* 3.5
* 3.6
* 3.7
* 3.8
Another possible cause of this error is an outdated pip version. Try:
`pip install -U pip`
==================================================================================
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure
× Encountered error while trying to install package.
╰─> turicreate
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
`
pip version - 22.0.2
python3.10 (I guess this maybe the problem, but I'm not sure)
windows10 OS
can someone help me to install turicreate...
I tried updating and upgrading pip versions, tried in python 2.7 and python3.10 but still got the same error.
I also tried this command,
python3 -m pip3 install -U pip
this returned
No module named pip3

Indexer library installation error in python

I am trying to install indexer library in python but getting the following error.
I encountered with the same problem and solved it by upgrading setuptools before installing indexer.
Upgraded setuptools by running following command:
pip install --upgrade setuptools
Then install indexer:
pip install indexer

Issue installing shapely Python Package

I am running python 3.6 on windows and am attempting to install Shapely using
pip install shapely==1.6b2
It is giving me the following errors
Command "python setup.py egg_info" failed with error code 1 in C:\Users\Cameron\AppData\Local\Temp\pip-build-242ae_ih\shapely\
I have seen the other posts about this issue and have tried:
pip install --upgrade setuptools
pip install ez_setup
easy_install -U setuptools
Nothing seems to work and I am not sure what to do next. Any advice would be appreciated.
Thanks
You may try to use the binary from this unofficial site. Just use pip install {wheel file name} to install it.
Shapely‑1.5.17‑cp36‑cp36m‑win32.whl (32-bit)
Shapely‑1.5.17‑cp36‑cp36m‑win_amd64.whl (64-bit)
Hope this would make the installation easier.
I had a similar error for installing shapely-1.5.17 via pip install shapely, and installing this made the pip install command work thereafter:
sudo apt-get install libgeos-dev
As of 2020, you can now simply install Shapely for Windows with:
pip install shapely
(you many need --upgrade to get at least version 1.7.0, when binary wheels were added for Windows)

issue in installing lxml in python 3.5

I have tried to install lxml by downloading "lxml-3.6.1-cp35-cp35m-win32.whl" file and installing it by giving command pip install lxml-3.6.1-cp35-cp35m-win32.whl on cmd but am getting error: lxml-3.6.1-cp35-cp35m-win32.whl is not supported wheel on this platform. what should I do to install?

PyEnchant installation issues

I'm trying to install PyEnchant, but when I write:
pip install pyenchant
in terminal I get:
-bash: pip: command not found
I have looked into installing PyEnchant with a wheel as well but I get the same error.
How do I install PyEnchant?
Python 3 required the pip3 command instead of just pip.
Use:
pip3 install pyenchant

Resources