vagrant

VSCode Python Remote Debugging Suddenly Not Working

VSCode Python Remote Debugging Suddenly Not Working Question: Starting a couple days ago my normal process for debugging python code via pytest has just stopped working. My previous process was as follows: Insert the debugpy macro either above the pytest test definition or at the top level of the code being debugged. import debugpy debugpy.listen(5678) …

Total answers: 1

venv not respecting –copies argument

venv not respecting –copies argument Question: I am ssh’d into a development environment (vagrant Ubuntu box) and my project directory is mapped to another filesystem (via vbox) so symlinks are not supported. I am attempting to create a new venv, but the –copies flag isn’t being respected. $sudo python -m venv –copies venv Error: [Errno …

Total answers: 2