更新setuptools后找不到easy_install

时间:2017-07-25 16:46:17

标签: python-2.7 amazon-web-services setuptools easy-install

在AWS计算机上,我使用

将pip更新为9.0.1版
string caminho = @"C:\Users\User1\Desktop\Test\";
DirectoryInfo dir = new DirectoryInfo(caminho);
FileInfo[] fi = dir.GetFiles();
foreach (var ficheiro in fi)
{
    string caminhoF = caminho + ficheiro.ToString();
    string extension = Path.GetExtension(caminhoF);
    if (!comboBox1.Items.Contains(extension))
    {
        comboBox1.Items.Add(extension);
    }
}

然后更新了从12.2到36.2.2的setuptools:

sudo -H pip install --upgrade pip

但现在我不能再使用easy_install了,它说

pip install -U setuptools

我看到/ usr / bin中只有easy_install-3.4,如何检索easy_install?

我的问题是我想创建一个.egg文件,显然使用旧版本的setuptools它没有正确创建,因此当我通过easy_install安装它时,我无法在Python中导入包('没有模块命名XXX')。

我正在使用Python 2.7

由于

0 个答案:

没有答案