尝试为GUI运行一些代码,如果我将其作为笔记本文件运行,则偶尔会起作用(其他时候它尝试编译而没有任何反应)。
我试图将其作为.py文件运行,但在模块“ c”试图下载但由于“ requirements.txt”不存在而失败时出现错误。
我使用anaconda(gl-env)2.7作为我的项目解释器,并尝试使用以下方法安装/查找require.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'
答案 0 :(得分: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存档