Issue of installing of pandas in vscode - python

I have create a sample project and adding environment then try to install pandas it show me this
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for pandas
Failed to build pandas
ERROR: Could not build wheels for pandas, which is required to install pyproject.toml-based projects
I have download this too :- https://visualstudio.microsoft.com/visual-cpp-build-tools/

Related

Unable to install Flask - SQLAlchemy with pip (greenlet build error) - Windows, Venv

I am trying to install Flask-SQLAlchemy with pip install -U Flask-SQLAlchemy and I'm getting this error during greenlet's build, I put a "..." to skip all of the copying files etc:
× Running setup.py install for greenlet did not run successfully.
│ exit code: 1
╰─> [92 lines of output]
running install
D:\test\server\.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(
running build
...
copying src\greenlet\tests\_test_extension_cpp.cpp -> build\lib.mingw_x86_64-cpython-310\greenlet\tests
running build_ext
building 'greenlet._greenlet' extension
error: --plat-name must be one of ('win32', 'win-amd64', 'win-arm32', 'win-arm64')
[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.
╰─> greenlet
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
I'm on Windows 10, AMD processor, pip version 23.0, python3 version 3.10.7. The package installs fine globally and in WSL, but fails every time with this error within the virtual environment which I run with ..venv\bin\Activate.ps1. Any ideas on how to fix this, maybe this isn't on my end?
This error is indicating that the greenlet package is failing to build during the installation of Flask-SQLAlchemy. The error message mentions that the --plat-name must be one of ('win32', 'win-amd64', 'win-arm32', 'win-arm64'). This means that the platform you are building the greenlet package for must be specified.
One solution could be to try to install the package using a specific platform name, such as:
pip install --no-use-pep517 -U --plat-name=win-amd64 Flask-SQLAlchemy
It is possible that the win-amd64 platform name is not correct for your system, in which case you can try one of the other platform names in the list.
If this doesn't work, it could be due to a compatibility issue between greenlet and the version of Python you are using (3.10.7). Try to upgrade or downgrade your Python version and see if that resolves the issue.

LightFM library install error on Sagemaker Notebook

I was using LightFM library on Sagemaker Notebook without any issue before.
However, from yesterday, I started seeing this error message and could no longer complete installation (pip install lightfm)
Building wheels for collected packages: lightfm
Building wheel for lightfm (setup.py) ... error
error: subprocess-exited-with-error
× python setup.py bdist_wheel did not run successfully.
│ exit code: 1
╰─> [176 lines of output]
/home/ec2-user/anaconda3/envs/python3/lib/python3.10/site-packages/setuptools/dist.py:775: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead
...
...
...
...
In file included from /home/ec2-user/anaconda3/envs/python3/include/python3.10/unicodeobject.h:1046:0,
from /home/ec2-user/anaconda3/envs/python3/include/python3.10/Python.h:83,
from lightfm/_lightfm_fast_openmp.c:20:
/home/ec2-user/anaconda3/envs/python3/include/python3.10/cpython/unicodeobject.h:551:42: note: declared here
Py_DEPRECATED(3.3) PyAPI_FUNC(PyObject*) PyUnicode_FromUnicode(
^~~~~~~~~~~~~~~~~~~~~
error: command '/usr/bin/gcc' failed with exit code 1
[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.
╰─> lightfm
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
I tried several suggestions I found from web, such as
pip install --upgrade pip
pip install --upgrade wheel
pip install --upgrade setuptools
pip install Cmake
pip install requests --no-dependencies
but none of these worked - still getting same error message.
How should I mitigate from this error?
This seems to be an issue with the lightfm package installation. Have you tried installing this in another environment? This can also be dependent on the notebook kernel you are using. Can you try installing in a virtual environment as well?

Trying to install pycaret on anaconda

I am trying to install pycaret on anaconda but I keep getting this error.
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.
╰─> numpy
note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error
× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.
Can someone please help me with that?
I tried using multiple prompts:
conda install -c conda-forge pycaret
pip install pycaret
I tried to install numpy seperately and got was able to do that sucessfuly but I got this message:
Collecting numpy
Using cached numpy-1.24.1-cp39-cp39-macosx_10_9_x86_64.whl (19.8 MB)
Installing collected packages: numpy
ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.
smop 0.41b0 requires networkx, which is not installed.
smop 0.41b0 requires ply, which is not installed.
smop 0.41b0 requires pytest, which is not installed.
smop 0.41b0 requires scipy, which is not installed.
Successfully installed numpy-1.24.1
and so I installed all these packages and reinstalled numpy again. Afterwards, I tried to install pycaret again but the same error appeared. Keeping in mind that I have a mac laptop.

Trying to download h5py, could not build wheels

I am trying to download the h5py package on windows. I am trying to install it with the pip command using a git bash terminal.
I have made sure to have python and some other things to my PATH/Environment Variables. I tried redownloading vscode, and python, tried to update pip and some other commands from this link: https://bobbyhadz.com/blog/python-failed-building-wheel-for-h5py . I was able to succesfully download h5py on my mac, I was wondering if anyone could explain the difference too.
Loading library to get build settings and version: hdf5.dll
error: Unable to load dependency HDF5, make sure HDF5 is installed properly
error: Could not find module 'hdf5.dll' (or one of its dependencies). Try using the full path with constructor syntax.
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for h5py
Failed to build h5py
ERROR: Could not build wheels for h5py, which is required to install pyproject.toml-based projects

Cryptography not installing

I've been trying to install cryptography for a while and I keep receiving the same error. I have installed Rust through Rustup and I am using the latest version of Rust. I am also not very savvy when it comes to installations so a basic explanation would be helpful if you can. Thanks.
= note: LINK : fatal error LNK1181: cannot open input file 'python3.lib'
error: could not compile cryptography-rust due to previous error
` error: cargo failed with code: 101
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
ERROR: Failed building wheel for cryptography
Failed to build cryptography
ERROR: Could not build wheels for cryptography, which is required to install pyproject.toml-based projects`

Categories