Posts

Featured Post

Hướng dẫn cài C++ với Visual Studio Code

Image
Điều kiện để cài Để cài đặt thành công, trước tiên bạn cần phải thiết lập môi trường phát triển cho C++. Cụ thể, trong hướng dẫn này yêu cầu: MinGW Visual Studio Code Visual Studio Code Extension Cài đặt MinGW Vào trang chủ của MinGW Vào trang Downloads Click vào icon windows để tải về Mở app vừa cài lên  Bấm Install, Next và đợi phần mềm tải về. Cài đặt xong, tick vào ô mingw32-gcc-g++-bin, chọn Mark for Installation Trên thanh menu bar, chọn Installation > Apply Changes    Sau khi cài đặt xong, vào đường dẫn mà bạn đã cài ứng dụng, theo mặc định là ở: C:\MinGW Vào thư mục bin trong đường dẫn trên  Copy path từ thanh address  Trên thanh search bar của Windows, gõ Variables , chọn Edit the system enviroment variables  Trong System Properties, chọn Environment Variables...  Trong Environment Variables, ở khung System Variables, chọn Path, xong bấm vào ô Edit  Ở cửa sổ Edit environment variables, bấm vào New và copy đường dẫn của MinGW mà mình đã copy ở bên trên  Bấm Ok > OK > O

Getting Started with Python 3 in Visual Studio Code

Image
Prerequisquisites To successfully complete this tutorial, you need to first setup your Python development environment. Specifically, this tutorial requires: VS Code VS Code Python Extension Python 3 Install a Python interpreter Which interpreter you use is dependent on your specific needs, but some guidance is provided below In Windows, install Python from python.org . You can typically use Download Python button that appears first on the page to download the lastest version. For additional information about using Python on Windows, see Using Python on Windows at Python.org Verify the Python Installation To verify that you’re installed Python successfully on your machine, run one of the following command (depending own your operating system): In Windows, open a command prompt and run the following command: py -3 --version If the installation was successful, the output windows should show the version of Python that you installed. Install Visual Studio Code and the