Closed lcflorindo closed 4 years ago
I'm receiving a same error and using python:3.6-slim docker image, I fixed it by installing gcc inside the container.
how to install gcc inside the container?
I ran into this same error and resolved it by doing either one of the following two ways:
pip install --no-use-pep517
pip install
works for me again (see the context here: https://github.com/pypa/pip/issues/8368)for windows I installed c++ complier solved this problem
this worked for me too
Hi All, having troubles installing fancyImpute ???
Open the atched file : [requirements.txt]
(https://github.com/pydata/bottleneck/files/6956991/requirements.txt)
Install each dependency in the txt file separately:
Since, i have noticed the cvxpy gives the error when installing:
ERROR: Failed building wheel for scs Failed to build scs ERROR: Could not build wheels for scs which use PEP 517 and cannot be installed directly
Then: use the following command to install it:
conda install -c conda-forge cvxpy
finally then :+1:
pip install fancyimpute
I had the same problem with coincurve, and the solution was unbelievably easy!
I simply installed the lowest version that meets my needs. And it worked!
The latest version was 15.0.1 and I installed version 4.4.0 without any error.
harshikanu's suggestion worked for me. I'd like to expand on it a little bit
- Go to visual studio downloads at https://visualstudio.microsoft.com/downloads/
- Scroll down to 'All Downloads'
- Click the dropdown for 'Tools for Visual Studio 2019'
- Download 'Build Tools for Visual Studio 2019'
and that should successfully update wheel and allow you to install bottleneck
This solution worked. Thank you. I took advantage of and installed some packages for my visual studio code and also some tools to compile Cmakes.
Hi, I'm installing Bottleneck by fastai lib in a Suse 12 sp4 server, but had the error when building wheels for it. It says that uses PEP517 and cannot be installed directly. Funny thing is that I had it installed on my (base) but when I move to my app env it just jams on the error. There is a way to solve it? Thanks in advance!