我正在尝试安装' os'模块和' os.path'红帽机器上的模块。我尝试按照命令。
pip install os
yum install os
但我一直在犯下以下错误
Could not find a version that satisfies the requirement os.path (from versions: )
No matching distribution found for os.path
我可以使用上述命令安装其他模块,但无法安装这些模块。
我需要同时安装os和os.path。
使用版本python 3.4.3
答案 0 :(得分:3)
查看Python Library 3.4这个广泛的列表。如果它在那里提到意味着它已经包含在Python的原始安装中。更具体地说,os.path
您因为尝试安装不存在的内容而导致此特定错误的原因。对此的提示是 os.path(来自版本:) 意味着没有匹配" os.path"的外部包。或其任何适当的版本。
答案 1 :(得分:1)
尝试此命令。它在我的系统中有效。
pip install path.py