Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

visual studio code - attempted relative import with no known parent package in anaconda(python 3.8.5) with vscode

Image of the errori am using anaconda(python 3.8.5) in vscode i am importing the y.py to the x.py by saying # note : both my x and y are on the same folder named blog

the statement i used for importing is

from .x import func_name

but i am having issues with the relative import saying that: ERROR:Exception has occurred: ImportError attempted relative import with no known parent package File "C:Users bw19harathwajanlogx.py", line 2, in from .models import data


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In VSCode, when importing other files, VSCode searches for the imported file ("models.py") from the parent folder of the currently opened file ("views.py") by default, so we can use "from models import data":

enter image description here

The Python language service I use is Jedi.

"python.languageServer": "Jedi",

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...