在Python 3.4中,Rexec pip安装失败

时间:2016-12-19 10:29:31

标签: python

命令:

pip install rexec

错误追溯:

Downloading/unpacking rexec
  Could not find any downloads that satisfy the requirement rexec
Cleaning up...
No distributions at all found for rexec
Storing debug log for failure in C:\Users\JSR-PC\pip\pip.log

2 个答案:

答案 0 :(得分:1)

Python 3中不存在rexec模块。自2.6版以来,它已被弃用,并在Python 3中被删除。

来源:https://docs.python.org/2/library/rexec.html

答案 1 :(得分:0)

正如iFlo的回答中所提到的,rexec模块已从Python 3中删除,尽管您可以在Python 2中找到它,但它已被弃用。但是,如果要创建资源受限环境,可能需要尝试使用pypy创建自己的解释器,并限制使用资源。