简体   繁体   中英

How to install pip

Can you please tell me how to install 'pip' on pypy3 interpreter in windows10 64 bits. I'm using pycharm IDE and set pypy as a IDE interpreter. But when I trying to install pandas library on pypy3 using this command

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 ". 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. I would suggest you wait until either pandas provides binary wheels for windows or pypy3/windows is supported on conda.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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