Skip to content
Advertisement

Tag: visual-studio-code

Setup custom launcher with paths as a param values in VS Code (Flask – certificate path)

There is an example in Visual Studio Code python setup tutorial it is shown how to setup Flask. My problem starts when I try to provide self-signed certificate paths. I’ve tried to add following configuration: I’ve tried to provide key/cert as: C:\FULL_PATH\TO\FILE C:/FULL_PATH/TO/FILE ‘C:\FULL_PATH\TO\FILE’ “C:\FULL_PATH\TO\FILE” and I always getting one of these error messages: Error: Invalid value for “–key”: “–cert”

VSCode kill running processes

I have been using Python debug and LLDB attach debug since I have code in Python and C++ I have run this multiple times. It looks like everytime there is an exception in the middle of debugging, the process doesn’t get killed. As a result, now after multiple runs, when I try to use LLDB Attach debug it shows multiple

Python not finding Tensorflow module under Anaconda

I’m a newbie trying to execute the code in first_steps_with_tensor_flow.ipynb locally on Windows 10. I have installed Anaconda Navigator 1.8.2, created an environment where I’ve installed, among others, tensorflow package. I then launch Visual Studio Code from Anaconda and run The last line is marked with red in VS Code, saying E0401:Unable to import ‘tensorflow.python.data’. Running, I get ModuleNotFoundError: No

How can I set up launch.json in Visual Code to debbug C

I’m newbie about Visual Code. I’d like to use Debbuging function with Visual Code. But There is a probelm to do it. It may happen by wrong launch.json setting(In my opnion) I’m using mac os newest version. I refered to some pages to do it myself. https://code.visualstudio.com/docs/languages/cpp https://github.com/Microsoft/vscode-cpptools/blob/master/launch.md https://code.visualstudio.com/docs/python/debugging However I saw same error. It said “launch: program ‘${/Users/bpk/Documents/Study/C/Study}/study’ does

Advertisement