Visual Studio 2019를 구성하지 않는 작업 디렉터리
4015 단어 helpvisualstudiopythondiscuss
내 폴더 구조는 다음과 같습니다this.
.
├── .gitignore
├── .travis.yml
├── .vs
│ ├── PythonSettings.json
│ ├── VSWorkspaceState.json
│ ├── launch.vs.json
│ ├── recipe-app-api
│ │ └── v16
│ │ └── .suo
│ └── slnx.sqlite
├── Dockerfile
├── LICENSE
├── README.md
├── app
│ ├── app
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── calc.cpython-37.pyc
│ │ │ ├── settings.cpython-37.pyc
│ │ │ ├── tests.cpython-37.pyc
│ │ │ └── urls.cpython-37.pyc
│ │ ├── calc.py
│ │ ├── settings.py
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ └── manage.py
├── docker-compose.yml
└── requirements.txt
내
launch.vs.json
파일을 다음과 같이 구성했습니다.{
"version": "0.2.1",
"defaults": {},
"configurations": [
{
"type": "python",
"interpreter": "(default)",
"interpreterArguments": "",
"scriptArguments": "",
"env": {},
"nativeDebug": false,
"webBrowserUrl": "",
"project": "app\\manage.py",
"name": "manage.py",
"workingDirectory": "app"
}
]
}
여전히 문제는 Visual Studio 2019가 내
working directory
가 app
폴더임을 감지할 수 없다는 것입니다. 그래서 Pythonimport
이 해결되지 않은 것으로 표시됩니다.launch.vs.json
파일에 내가 뭔가 잘못하고 있는 건가요? 이 문제를 어떻게 해결할 수 있습니까?Visual Studio 2019 최신 버전을 사용하고 있습니다.
Reference
이 문제에 관하여(Visual Studio 2019를 구성하지 않는 작업 디렉터리), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/instinct/working-directory-not-configuring-visual-studio-2019-126h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)