Làm sao để cài thư viện vào VS Code?

Em ms cài visual studio mà c có thư viện vậy làm sao để cài thư viện vào visual ạ??? e có xem mấy bài trên mạng nhưng vẫn ko ra kết quả mà máy vẫn báo lỗi ko có thư viện là sao???

Là sao nhỉ. VS phải tự có rồi chứ. Bạn thử show lỗi lên xem nào. :slight_smile:

3 Likes


đây ạ chỗ đoạn dưới nó ghi no such a file or directory … ???

Bạn lưu file a.cpp:point_down:

 E:\ĐHCN\New folder

Mà current work directory lại là:

C:\Users\DELL

Bạn cần chuyển nó qua folder của a.cpp đã.
:point_right: Gõ:

> E:
> cd ĐHCN\'New folder'
> g++ a.cpp

P/s: Không nên đặt folder có chữa tiếng Việt và dấu cách. :slight_smile:

5 Likes

Cái này là VS code, k phải visual studio.
Để chạy được, bạn cần mở folder thay vì mở file, lúc này workspace path là thư mục đang mở chứ không phải C:\Users\DELL…
lúc này chỉ cần

> g++ a.cpp

là đủ

2 Likes

??? các bro ơi

gõ thêm dòng cd NMLT nữa

5 Likes

vì file cpp ở trong foder kia chứ không trực tiếp ở workspace nên phải cd đến nha
hoặc cách đơn giản hơn là cài Code Runner

2 Likes

Đường dẫn tương đối tới file là được mà.
Để tụi nhỏ phạm lỗi vài lần mới thấm được, chứ cái gì cũng xài tool, đến khi chuyển qua compiler tool không hỗ trợ lại không biết config.

4 Likes


mn cho hoi minh co file host roi ,co .net core roi ma sao van bao loi nay vay

Thiếu .NET Framework, tải về từ trang Microsoft rồi cài vô là xong.

3 Likes

tui tai ve setup r, co can reset vs code lai khong, tai tui van bao loi do

Bạn đọc thông báo lỗi đó, theo mình là thử mò hết cho đến khi mệt vật vã, phờ râu, bải hoải chân tay cái đã, nốc bò húc vào cho tỉnh táo rồi mò tiếp, chứ đâu mà vội bó tay sớm thế, nếu vẫn chưa được, lấy keo con voi 502 ra hít, mò tiếp.

Cái lúc nãy mình gợi ý là liên quan: https://go.microsoft.com/fwlink/?linkid=798306 có trên thông báo lỗi, nếu vẫn chưa giải quyết được

thì lại có thấy cái 0x80070057 <= gõ error 0x80070057 lên trang bing.com (không gõ vào Google vì tìm mã lỗi của Microsoft thì Bing hiệu quả hơn). Nó ra cái này: https://www.bing.com/search?q=error+0x80070057 bạn mò đó mà giải quyết tiếp.
ĐỪNG BUÔNG KIẾM quá sớm khi chưa bị đối phương chặt đầu, đó là lời khuyên cho ai làm nghề IT, nghề đánh giá cao sự vọc, vọc và vọc.

2 Likes

Trang github của dotnet:

Xem ra vấn đề này liên quan đến phiên bản hệ điều hành của bạn (Window 7). Bạn xem các bình luận trên trang đó có thể có cách giải quyết.

3 Likes

Nhận xét của bạn rất tinh tế, khiến mình cũng muốn xem thử liệu vấn đề nó như thế nào?Dù mình đang dùng Ubuntu cũng bực mình lây cái hệ điều hành Windows (nghỉ chơi từ 2010), nó ói ra cái bài này.

2 Likes

Bạn @SITUVN.gcd nói đúng,
chủ thread đang dùng .net core 3.0 hoặc 5.0 trên windows 7 cần phải:

  • Cài đặt Microsoft Visual C++ 2015-2019
  • Update package KB2533623

Theo hình cái cờ ở góc phải bên dưới, chắc là đã tắt update rồi. Mà bây giờ chỉ còn win 7 ESU có thể update.

3 Likes

2 posts were split to a new topic: Máy windows 7, RAM 2gb có chạy được VS 2015 không?

We need to download two things to run our C/C++ code.

  1. MinGW compiler — To compile the code or simply translate it into machine-readable language.
  2. Visual Studio Code — IDE in which we will write our program.

Downloading MinGW Compiler

  1. Visit https://sourceforge.net/projects/mingw/ and click on download.
  2. Open the mingw-get-setup.exe file and go with the default installation. After installation MinGW Installation Manager window will shows up.

MinGW Installation Manager

  1. Click on the checkbox to the left of mingw32-gcc-g++ (I have already downloaded it that’s why it is showing a green box) . Select Installation > Apply Changes > Apply from the menu bar.

Installing compilers in MinGW Installation manager

Editing PATH environment variable

We need to include the directory C:\MinGW\bin in our system’s PATH environment variable to access the above directory by simply writing a command in CLI without writing the entire path.

  1. Search for “environment” in the search box. Click on Edit the system environment variables > Environment variables.

Searching for environment variables

  1. After following the above steps, the Environment variables window will show up. Click on Path > Edit > New and paste C:\MinGW\bin. Click on Ok and you have successfully edited your PATH environment variable.

Downloading and setting up VS Code

As we have set up our compiler, now we’re all ready to download VSCode and write our first C/C++ program.

  1. Click here to download VS Code. After downloading open the setup file.
  2. Accept the agreement , check all the boxes shown in the picture, if you want you can also check the Create a desktop icon box and click on Next > Install . Congratulations, you have successfully installed VS Code on your machine.:tada:

VS Code setup window

VS Code is all ready now to write our first code, but let’s download some important extensions to make our work even easier.

  • Head over to the Extensions tab (Ctrl+Shift+X), and search “c/c++” , click on the first extension you see i.e. C/C++ by Microsoft and then Install .

This extension adds language support for C/C++ to Visual Studio Code, including features such as IntelliSense and debugging.

  • Now we’ll download yet another extension. Search for “Code Runner Jun Han” , click on the first extension you see and install it.

This extension lets you run code snippets and code files for multiple languages like C, C++, Java, JS, PHP, Python, etc.

To run our code in the integrated terminal of VS Code, we need to do one last thing. Go to the Settings tab (Ctrl+,) search “ code runner terminal ” and check the same box as shown in the picture.

Congratulations, on following the article till the end, and successfully setting up the VSCode environment for C/C++ development.

#ntechdevlopers

1 Like
83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?