Pycharm在调试模式下为PythonDjango Proj提供错误“TypeError:'NoneType'对象不可调用”

2024-10-01 09:34:08 发布

您现在位置:Python中文网/ 问答频道 /正文

我已经在Pycharm中建立了python-django项目。在

在运行模式下的python manage.py runserver命令上,它工作正常,但当我在调试模式下运行项目时,会出现以下异常:

Traceback (most recent call last):
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 2060, in <module>
    main()
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 2054, in main
    globals = debugger.run(setup['file'], None, None, is_module)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 1405, in run
    return self._exec(is_module, entry_point_fn, module_name, file, globals, locals)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 1412, in _exec
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "/home/usmanmaqbool/Desktop/proj/manage.py", line 22, in <module>
    execute_from_command_line(sys.argv)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
    utility.execute()
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 359, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/base.py", line 294, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 58, in execute
    super(Command, self).execute(*args, **options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/base.py", line 345, in execute
    output = self.handle(*args, **options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 97, in handle
    self.run(**options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 106, in run
    autoreload.main(self.inner_run, None, options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 333, in main
    reloader(wrapped_main_func, args, kwargs)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 304, in python_reloader
    exit_code = restart_with_reloader()
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 290, in restart_with_reloader
    exit_code = os.spawnve(os.P_WAIT, sys.executable, args, new_environ)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/_pydev_bundle/pydev_monkey.py", line 496, in new_spawnve
    return getattr(os, original_name)(mode, path, args, env)
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 573, in spawnve
    return _spawnvef(mode, file, args, env, execve)
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 549, in _spawnvef
    elif WIFSIGNALED(sts):
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 549, in _spawnvef
    elif WIFSIGNALED(sts):
TypeError: 'NoneType' object is not callable

Process finished with exit code 1

我还创建了新的虚拟环境和新的虚拟环境相同的问题!在

编辑1

数据库设置:

^{pr2}$

几天前它还可以正常工作,但是在Pycharm的新更新版本之后,我只在一个项目中遇到了这个问题。在


Tags: djangoinpyhomeexecutelibpackageslocal
2条回答

2019.2.1版现已发布并修复此错误。在

Release 2019.2.1 details

更新PyCharm的版本如下:

转到File -> Settings -> Appearance & Behaviour -> System Settings -> Updates

Check Now然后Update

这是一些Python版本的PyCharm 2019.2调试器中的回归,例如旧的2.7.xhttps://youtrack.jetbrains.com/issue/PY-36726

修复已经准备就绪,将包含在2019.2.1小更新中,预览版将在本周上线。在

相关问题 更多 >