Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13861

How can I reference an environment variable for python path in vscode launch configuration?

$
0
0

I am using vscode on my desktop and laptop and each machine would generate a random folder name with a hash for the virtual environment path when creating the virtual environment using poetry. In order to use the same launch.json file in my project for both computers, I'd like to reference an environment variable instead of hard coding the virtual environment path names. I've tried the below but vscode is stating "The Python path in your debug configuration is invalid." How can I reference the environment variable for the "python" path?

my ~/.zshrc:

export PROJ_VENV=$HOME/.cache/pypoetry/virtualenvs/myproj-NMmw6p6o-py3.12

my launch.json:

{"version": "0.2.0","configurations": [    {"name": "Python: Django","type": "python","python": "${env:PROJ_VENV}/bin/python","request": "launch","program": "${workspaceFolder}/src/manage.py","args": ["runserver",      ],"django": true    }  ]}

Viewing all articles
Browse latest Browse all 13861

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>