Code
Python
Virtual Environment
Create the environment
python -m venv env_nameActivate it
source env_name/bin/activateInstall requirements
pip install -r requirements.txtCheck Library Version
pip show <library_name>GO
Install Individual packages
go get github.com/ffuf/ffufUpdate Dependencies
go get -u github/fatih/color@latestCreate mod folder
go mod init <projectfolder>Add Dependencies
go mod iniCompile Code
go buildRun code
go run <code>Clean Unused dependencies
go mod tidyList all dependencies
go list -m allDart
Run the code
dart runClean Cache
dart pub cache cleanDownload Dependencies
dart pub getCheck for Outdated packages
dart pub outdatedUpdate Dependencies
dart pub upgradeLook for issues
dart analyzeList packages
dart pub global listFlutter
Build APK
flutter build apkBuild Web
flutter build webRun the app in the web-server
flutter run -d web-serverCheck for issues
flutter doctorClean Cache
flutter cleanGet Dependencies
flutter pub getUpgrade SDK
flutter upgradeCheck for Outdated packages
flutter pub outdatedShow logs
flutter logsGenerate Flutter icons
flutter pub run flutter_launcher_icons:mainLast updated