- Download Flutter
- Download Flutter
- Extract Downloaded Flutter SDK in a filder e.g. my case it is D:\installs\flutter_windows_3.27.3-stable\flutter
- Update "Path" environment variable to the flutter SDK bin folder D:\installs\flutter_windows_3.27.3-stable\flutter\bin
- Open new command prompt and run
- flutter doctor
- It will run the command possible with error of missing android tool chain etc, To create Android apps with Flutter, We need following android components be installed.
- Android SDK Platform, API 35.0.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Liferay Language Selector Widget Tepmlate | |
| <#if entries?has_content> | |
| <#list entries as entry> | |
| <#if !entry.isDisabled()> | |
| <#assign isSelected = entry.selected /> | |
| <#if !isSelected> | |
| <@liferay_aui["a"] | |
| cssClass="btn btn-light" | |
| href=entry.getURL() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Steps | |
| 1. Ensure Permissions: | |
| Right-click the PostgreSQL installer and select Run as Administrator to ensure it has full privileges. | |
| 2. Clean Existing Data Directory: | |
| Delete the data directory created during installation (C:\installs\PostgreSQL\17\data), as it may contain incomplete initialization files from the failed attempt. | |
| 3. Create a New Data Directory with Initdb Command - Open Command Prompt as Administrator and run: | |
| C:\installs\PostgreSQL\17\bin\initdb.exe -D C:\installs\PostgreSQL\17\data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Open pip.ini file from: | |
| %APPDATA%\pip\pip.ini | |
| Set | |
| --------------------- | |
| [global] | |
| trusted-host = pypi.python.org | |
| pypi.org | |
| files.pythonhosted.org | |
| proxy = http://<<username>>:<<password>>@<<hostname>>:<<port>> |