vscode python 无法引入上层目录解决

在vscode 中.vscode 配置如下

{

// Use IntelliSense to learn about possible attributes.

// Hover to view descriptions of existing attributes.

// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387

"version": "0.2.0",

"configurations": [

{

"name": "Python: Current File",

"type": "python",

"request": "launch",

"program": " f i l e " , " c o n s o l e " : " i n t e g r a t e d T e r m i n a l " , " j u s t M y C o d e " : f a l s e , " c w d " : " {file}", "console": "integratedTerminal", "justMyCode": false, "cwd":" file","console":"integratedTerminal","justMyCode":false,"cwd":"{fileDirname}",

"env": {"PYTHONPATH": "${cwd}"}

}

]

}

相关推荐
Jasonakeke3 分钟前
我的编程来时路
java·c++·python
Yvonne爱编码8 分钟前
Java 中的 hashCode () 与 equals () 核心原理、契约规范、重写实践与面试全解
java·开发语言·数据结构·python·hash
HappyAcmen18 分钟前
理解Python中的global与nonlocal
python
测试老哥1 小时前
Web自动化测试:Cypress 测试框架概述
自动化测试·软件测试·python·selenium·测试工具·职场和发展·测试用例
曲幽1 小时前
FastAPI项目半夜报警吵醒你?聊聊告警这事儿怎么搞!
python·logging·fastapi·web·monitoring·webserver·health·uptimerobot
Bert.Cai1 小时前
Python模块简介
开发语言·python
2501_924952691 小时前
自动化机器学习(AutoML)库TPOT使用指南
jvm·数据库·python
Thomas.Sir1 小时前
第二章:Python3 之 列表与元组
python·列表·元组
忘忧记1 小时前
Fixture详解
开发语言·python
echome8881 小时前
Python 装饰器实战:用@syntax 优雅地增强函数功能
开发语言·python