IOError:[Errno 2]没有这样的文件或目录:'requirements.txt'(没有名为c的模块)

问题描述 投票:0回答:1

尝试为GUI运行一些代码,如果我将其作为笔记本文件运行,偶尔会有效(其他时候它会尝试编译而没有任何反应)。

我试图将它作为.py文件运行,我得到一个错误,模块“c”试图下载但失败,因为“requirements.txt”不存在。

我使用anaconda(gl-env)2.7作为我的项目解释器,并尝试使用以下命令安装/查找requirements.txt文件:

pip install -r requirements.txt

我得到文件/目录不存在的错误。

当我运行我的程序时,这是我得到的错误:

Collecting c
  Downloading https://files.pythonhosted.org/packages/fc/5f/1130c201f3138745970f8de520095a942cdd174e8f84faf04ce77c434d8d/c-0.1.0.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "C:\Users\Tommy\AppData\Local\Temp\pycharm-packaging\c\setup.py", line 6, in <module>
        with open('requirements.txt') as fh:
    IOError: [Errno 2] No such file or directory: 'requirements.txt'
python python-2.7 tkinter pip anaconda
1个回答
0
投票

根据PKG-INFO这个模块:

        ## Installing

        This is a python 3 package, and requires python 3.5.
        To install, type in the terminal:

            pip3 install c

看起来你不能用这个2.7。作为一个说明,我没有pip安装,我只是跑了

curl --output c-0.1.0.tar.gz https://files.pythonhosted.org/packages/fc/5f/1130c201f3138745970f8de520095a942cdd174e8f84faf04ce77c434d8d/c-0.1.0.tar.gz

下载tar存档

© www.soinside.com 2019 - 2024. All rights reserved.