python in vs code not working code example
Example 1: pipenv with vscode
pipenv --py
take the output of this and put it in the "select interperter"
pipenv install --dev pylint
for error validation
Example 2: visual studio code import library python
"python.linting.pylintArgs": [
"--init-hook",
"import sys; sys.path.append('/path/to/Functions')"
]
sys.path.append("/path/to/parent")
from Functions import functions
functions.copy()
functions.delete()
from Functions.functions import copy, delete
copy()
delete()