我正在尝试执行以下代码
pypy easy_install [something]
我遇到了
没有这样的文件或目录:'easy_install'
如何让pypy
与easy_install配合使用?
我知道有一些类似的问题,但我需要一个Windows解决方案,我不明白linux的解释。
这些是我的系统和应用程序规范
非常感谢!
答案 0 :(得分:0)
我不是百分百肯定,但如果pypy
与标准python类似,则必须使用-m
标志运行脚本/模块:
pypy -m easy_install pkg
Python的帮助条目:
-m mod : run library module as a script (terminates option list)