简体   繁体   English

如何安装pip

[英]How to install pip

Can you please tell me how to install 'pip' on pypy3 interpreter in windows10 64 bits.你能告诉我如何在 windows10 64 位的 pypy3 解释器上安装“pip”。 I'm using pycharm IDE and set pypy as a IDE interpreter.我正在使用 pycharm IDE 并将 pypy 设置为 IDE 解释器。 But when I trying to install pandas library on pypy3 using this command但是当我尝试使用此命令在 pypy3 上安装 pandas 库时

pypy3 pip install pandas

I'm getting error like this___我收到这样的错误___

FileNotFoundError: [Errno 2] No such file or directory: 'pip'

Can you please tell me how to resolve this problem...你能告诉我如何解决这个问题吗...

pypy3 -m pip install virtualenv

Note the " -m ".注意“ -m ”。 But you really do not want to try to install pandas like this: since there is no binary wheel for pypy it will compile from source, which is a mess on windows.但是您真的不想尝试像这样安装熊猫:因为 pypy 没有二进制轮,它将从源代码编译,这在 Windows 上是一团糟。 I would suggest you wait until either pandas provides binary wheels for windows or pypy3/windows is supported on conda.我建议您等到 pandas 为 windows 提供二进制轮子或 conda 支持 pypy3/windows。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM