python NameError: name 'file' is not defined

PythonPipGunicorn

Python Problem Overview


I dont know much about python. I want to start working on the project and the setup instruction says:

pip install -r requirements-dev.txt

Simple enougth. The problem is that I get this:

    Downloading/unpacking gunicorn==0.13.4 (from -r requirements.txt (line 7))
  Running setup.py egg_info for package gunicorn
    Traceback (most recent call last):
      File "<string>", line 16, in <module>
      File "/tmp/pip-build-root/gunicorn/setup.py", line 18, in <module>
        long_description = file(
    NameError: name 'file' is not defined
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):

  File "<string>", line 16, in <module>

  File "/tmp/pip-build-root/gunicorn/setup.py", line 18, in <module>

    long_description = file(

NameError: name 'file' is not defined

I dont understand the problem. Maybe somebody can help out?

I run this on Arch Linux, python defaults to python 3 and the project is not python 3 but Im not sure if thats it.

Thanks.

Python Solutions


Solution 1 - Python

file() is not supported in Python 3

Use open() instead; see Built-in Functions - open().

Solution 2 - Python

It seems that your project is written in Python < 3. This is because the file() builtin function is removed in Python 3. Try using Python 2to3 tool or edit the erroneous file yourself.

EDIT: BTW, the project page clearly mentions that

> Gunicorn requires Python 2.x >= 2.5. Python 3.x support is planned.

Solution 3 - Python

file is not defined in Python3, which you are using apparently. The package you're instaling is not suitable for Python 3, instead, you should install Python 2.7 and try again.

See: http://docs.python.org/release/3.0/whatsnew/3.0.html#builtins

Solution 4 - Python

To solve this error, it is enough to add from google.colab import files in your code!

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionnickikView Question on Stackoverflow
Solution 1 - PythonparkerprojectView Answer on Stackoverflow
Solution 2 - Pythonmg007View Answer on Stackoverflow
Solution 3 - PythonBlubberView Answer on Stackoverflow
Solution 4 - PythonAso BozorgpanahView Answer on Stackoverflow