Showing posts with label install. Show all posts
Showing posts with label install. Show all posts

Friday, October 29, 2021

Syntax and Comments in PYTHON

What is Syntax?

  In computer science, the syntax of a computer language is the set of rules that defines the combinations of symbols that are considered to be correctly structured statements or expressions in that language.

This applies both to programming languages, where the document represents source code, and to markup languages, where the document represents data.


comments in Python?

  A Python comment is a line of text that appears in a program but is not executed by the program. You can declare a comment using a hashtag (#). Comments can appear on a new line or at the end of an existing line of code.

Comments are used to explain how code works and for testing purposes.


If you want to learn about basic syntax and comments in Python, So here is the video which is based on Python Syntax and Comments.





If you are a beginner and want to learn Python from basics so here is the full series which is for absolute beginners, check out the link below πŸ‘‡πŸ‘‡





If you want to learn other programming languages from basics so check our Youtube channelπŸ‘‡πŸ‘‡




Wednesday, October 27, 2021

What is python ? Introduction to the Python

 What is Python?


In simple words, Python is a computer programming language often used to build websites and software, automate tasks, and conduct data analysis. Python is a general-purpose language, meaning it can be used to create a variety of different programs and isn’t specialized for any specific problems.




Here is Introduction video for python if you are not familiar with that.







You can also visit our youtube channel for learning GCP, AWS, C++ like other programming languages.

Link for Youtube channel- 




Saturday, April 27, 2019

Install PowerShell and VMware PowerCLI on macOS



Install PowerShell and VMware PowerCLI on macOS

Install Powershell on Mac
brew cask install powershell

Now, to launch a PowerShell session in macOS, enter the following in terminal.
pwsh

Set Repository for Find Vmware module
Set-PSRepository -Name "PSGallery" -InstallationPolicy "Trusted"

Find Vmware module
Find-Module "VMware.PowerCLI" | Install-Module -Scope "CurrentUser" -AllowClobber

Install Vmware PowerCLI
Get-Module "VMware.PowerCLI" -ListAvailable | FT -Autosize

And if you’d like to see all of the VMware installed modules, run the following.
Get-Module "VMware.*" -ListAvailable | FT -Autosize

As new versions of VMware.PowerCLI is released, you can run the following command to update it.
Update-Module "VMware.PowerCLI"

Let’s test connecting to vCenter server…
Connect-VIServer -Server "<Server_Name>"

To bypass this, enter the following command and then enter “Y” when prompted.  This will set the parameter for the current user.

Set-PowerCLIConfiguration -InvalidCertificateAction "Ignore"

Top ChatGPT Prompts for DevOps Engineers

  As a DevOps engineer, your role involves juggling complex tasks such as automation, infrastructure management, CI/CD pipelines, and troubl...