virtual environment python visual studio code 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: creat evirtualenvironment in python vs code

# macOS/Linux
# You may need to run sudo apt-get install python3-venv first
python3 -m venv .venv

# Windows
# You can also use py -3 -m venv .venv
python -m venv .venv

Example 3: visual studio code import library python

"python.linting.pylintArgs": [
    "--init-hook",
    "import sys; sys.path.append('/path/to/Functions')"
]
  
# OR 

sys.path.append("/path/to/parent")

# option 1
from Functions import functions
functions.copy()
functions.delete()

# option2
from Functions.functions import copy, delete
copy()
delete()