-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip pandas from wheels #7936
Comments
There's no panda in the command, and you're not on AIX. Could you please elaborate on what you're trying to do? |
@McSinyx I want pip3 install pandas from wheels pip==9.0.3 is success but pip3==20.0.2 fail |
Your command gives me this: $ pip3 install --no-cache-dir --no-index --find-links wheelhouse/pandas-1.0.1.tar.gz pandas==1.0.1
Defaulting to user installation because normal site-packages is not writeable
Looking in links: wheelhouse/pandas-1.0.1.tar.gz
WARNING: Url 'wheelhouse/pandas-1.0.1.tar.gz' is ignored. It is either a non-existing path or lacks a specific scheme.
Collecting pandas==1.0.1
ERROR: Could not install packages due to an EnvironmentError: Invalid URL 'wheelhouse/pandas-1.0.1.tar.gz': No schema supplied. Perhaps you meant http://wheelhouse/pandas-1.0.1.tar.gz? Is what you want to install panda from sdist? Then you can try |
@McSinyx i update "How to Reproduce". |
pip introduced build isolation with PEP 517 in 19.0, which requires the user to install PEP 517 requirements (listed in pyproject.toml) at runtime. You will need to also include those packages alongside with with source package itself in your For Pandas 1.0.1, you need Related: #7863 |
@uranusjr Error start at 10.0.0 |
Hmm... What you'd want to do is:
|
Closing since this seems to have been resolved for OP. |
Environment
Description
pip==9.0.3 pandas from wheels is ok
pip==20.0.2 pandas from wheels is fail
commod
pip3 install --no-cache-dir --no-index --find-links wheelhouse/pandas-1.0.1.tar.gz pandas==1.0.1
pip 10.0.0 i have install setuptools=45.2.0
pip >= 18.0
How to Reproduce
how to install pandas https://pandas.pydata.org/docs/getting_started/install.html
1.mkdir wheelhouse && cd
2.wget
https://files.pythonhosted.org/packages/02/c3/e8c56de02d6c52f8541feca2fd77117e8ae4956f7b3e5cdbed726624039b/pandas-1.0.1.tar.gz && cd../
3. pip3 install --no-cache-dir --no-index --find-links wheelhouse/pandas-1.0.1.tar.gz pandas==1.0.1
The text was updated successfully, but these errors were encountered: