Forrest logo
back to the pio tool

pio-account:tldr:70ff0

pio-account: Log in to your PlatformIO account.
$ pio account login --username ${username} --password ${password}
try on your machine

This command is used to login to the PlatformIO (PIO) account from the command line interface (CLI).

Here's a breakdown of the command and its options:

  • pio is the main command of the PlatformIO CLI.
  • account is a sub-command used for managing PlatformIO accounts.
  • login is a specific action that allows you to log in to your account.

The command also includes some arguments:

  • --username specifies the username to be used for login. ${username} is likely a placeholder that you need to replace with the actual username of your PIO account.
  • --password specifies the password associated with the provided username. ${password} is again a placeholder that you need to replace with the actual password of your PIO account.

To use this command, you should replace ${username} with your actual PIO account username and ${password} with your actual account password. For example, if your username is myuser and your password is mypassword, you would run the command as follows:

pio account login --username myuser --password mypassword

Make sure to provide the correct username and password associated with your PIO account to successfully log in.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pio tool