如何使用vs代码调试运行Cygwin64的python

时间:2016-07-01 01:19:12

标签: python cygwin virtualenv visual-studio-code

我需要在Ubuntu系统上运行我们的python项目,但我想在我的PC上编码,其他人,Windows上不支持某些python库,所以我下载cygwin,使用已安装的python成功运行我们的项目。

在使用cygwin之前,我已成功调试本地python,但问题是我不能使用vs代码在cygwin数据包中使用python进行调试。

PS:我改变了" python.pythonPath":" python" to" python.pythonPath":" C:\ cygwin64 \ bin \ python2.7.exe"没有用。

PPS:我改变了#34; launch.json"如果是打击,它会说" Source \ cygdrive \ f \ project \ python \ security \ app \ models \ f:\ project \ python \ security \ app \ models \ Capture.py不可用。&# 34;

"version": "0.2.0",
"configurations": [
    {
        "name": "Python",
        "type": "python",
        "request": "launch",
        "stopOnEntry": true,
        "program": "${file}",
        "pythonPath": "C:/cygwin64/bin/python2.7.exe",
        "debugOptions": [
            "WaitOnAbnormalExit",
            "WaitOnNormalExit",
            "RedirectOutput"
        ]
    }

目前,我不知道如何解决这个问题,请帮助。

0 个答案:

没有答案