2017-07-19 45 views
0

我已經安裝了Python支持和Python 3.5 64位的Visual Studio 2017。我想檢查VS如何與Python合作學習。在Visual Studio中的Python - 'CoreCompile'錯誤

我試圖運行簡單的編程

def add(a, b): 
    return a + b 

result = add(3,4) 
print(result) 

當我運行[F5]或建[按Ctrl + Shift + F5]我得到這樣的錯誤:

Error MSB4057: The target "CoreCompile" does not exist in the project.

我覺得一切配置好。我可以在VS中使用python控制檯。環境在解決方案資源管理器中可見你有什麼想法嗎?

enter image description here

回答

1

試試這個:

  • 在文本編輯器中打開項目。
  • 找到並取消以下行<!--<Target Name="CoreCompile" />-->

希望它應該爲你工作。