Remote VSCode extension not installing on Ubuntu 18.04 - vscode-remote

I am trying to download the remote development extension in vs-code released by Microsoft on a Ubuntu 18.04 Machine.
However the install fails and the following message appears:
Unable to install because, the extension 'ms-vscode-remote.vscode-remote-extensionpack' compatible with current version '1.34.0' of VS Code is not found.
What could be done about this?

At the moment, this extension is in Preview mode. According to VSCode Extension Page, you need to have Visual Studio Code Insiders in order to use this extension.

Related

ESP-IDF: idf.py build fails with cmake error (unknown cmake command idf_component_register)

idf.py build consistently fails on my windows install of esp-idf, I installed it using the tools provided in espressif's documentation, here are the logs:
Logs
I tried reinstalling to no avail. Other than that I don't know what to do exactly since it always just worked when I used it on linux
As you are use old SDK version please re-clone new sdk and compile it will work fine.
I suggest you to use V4.4 as this sdk is more stable then V5

installing GSL library for C programming in windows

I want to install the GSL library (https://www.gnu.org/software/gsl/) in windows. I have downloaded the files but i do not know what to do apart from that in order to be able to use the functions of the library (apart from the #include <...> in my program.c file).
I am using visual studio code and i have installed mingw.
Thanks in advance
EDIT
I am adding more information about this issue. I am not the original poster, but I have the same problem.
I am trying to use the GSL and I work with Visual Studio Code on Windows 10.
I have already installed the basic packages to work with C/C++ in
Visual Studio Code. More precisely, if I am not wrong, VS Code is
using the compiler gcc.exe from mingw64 (last version). This was
installed using an 'extension' available at VS Code (https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools).
I downloaded the last version of the GSL (2.7) and unzipped it.
I get stuck when I try to follow the installation instructions. When I
execute either .\configure or ./configure in the DOS command line,
I get an error of "unknown command" (even if I am placed in the same directory where the file is stored).
When I execute .\configure in PowerShell, I get a message asking me
which programme should be used to open this file.
And here is where I get lost. :/
I have discovered an alternate path, which is installing GSL from vcpkg (https://vcpkg.io/). This is suggested by VS Code, actually. This vcpkg seems to be a programme by Microsoft to make it easier to install third-party C/C++ packages in Windows.
The specifications to install vcpkg are (https://vcpkg.io/en/getting-started.html):
Windows 7 or newer
Git
Visual Studio 2015 Update 3 or newer
I can try this path, but first I would like to be sure there is no easier way (installing Visual Studio to not really use it seems a lot to me!).

Android Studio: LLDB won't install correctly

Android Studio: version 2.3.2
Tools are up to date with latest versions.
In SDK Manager, I check LLDB and click Apply.
It says it installed LLDB correctly, but the SDK Manager still shows it is not installed.
When I run the debugger it has to re-install LLDB every time.
I solve this issue using this answer: https://stackoverflow.com/a/40170045/4915707
Go to android-sdk folder on your file System, Locate folder lldb and
delete folder lldb. (For safety purpose you can keep backup or rename
folder.)
Now from Android studio Tools->Android->SDK Manager->SDK
Tools and update lldb option. Click on Apply. It will download LLDB
2.2.3 and install it properly.
Issue was arising due to some conflict between older downloaded
version LLDB and newer LLDB version

I get the following error message when I try and open eclipse for C/C++

I have a working Eclipse java version (java mars) but recently tried to download the C/C++ version. I also downloaded MinGW and it sits in the same directory as the eclipse c folder. The problem is that when I launch eclipse, rather than opening up, I get the following error message:
I recently redownloaded jdk and jre if that might have caused this.
What does this mean and how can it be fixed?

I cannot find python35_d.lib

I have downloaded the 3.5 version of python on my windows 7 home premium computer with version 6.1 software. I wish to use a C main program with python library extensions. I have aded the path to the include folder and the library folder to the dev studio c-compiler. I am testing with the supplied test program that prints out the time but I get a compile error. While it can find Python.h, it can't find python35_d.lib. I can't either. Is it missing from the download or is this another name for a one of the libraries in the download? Thanks
Maybe a little too late, but I found a work around for the missing 'python3x_d.lib' : When installing the python with pythoninstaller.exe, choose the advanced setup options in the first command window of the installation wizard, there choose the option "download debug binaries", then the file python3x_d.lib is automatically installed.
I faced this error when trying to build opencv with python bindings

Resources