Not able to install boltiot library

I was unable to install the boltiotai library as per instructions of the video
Please help out with the same

Hi @avantikay1

In your installation command you have used “-” character thrice and that is why it is giving you that error. Please try installing the boltiotai library using the below command

pip install boltiotai

To upgrade the library use the below command

pip install --upgrade boltiotai

Do try this and let us know. If you still face any issue, Please feel free to get back to us.

Hello.
It seems that you may have typed “-” symbol thrice and added an extra space while inputting the shell command.

pip install --upgrade boltiotai

this command should help you install the required library.

also make sure to use

from boltiotai import openai

in the python code.

Hi @avantikay1

In your installation command, it seems you might have used the “-” character incorrectly. Please try installing the boltiotai library using the following command:

pip install boltiotai

To upgrade the library, use this command:

pip install --upgrade boltiotai

Ensure you are using the correct command format. If you still face any issues, please feel free to get back to us.

Additionally, in your Python code, make sure to import the library correctly:

from boltiotai import openai

This should help you install and use the required library.

Hello,

It seems you might have typed the “-” symbol three times and added an extra space in the shell command.

To install the required library, use this command:
pip install boltiotai
Additionally, ensure you upgrade the library:
pip install boltiotai

Make sure you have your API key included in the secrets which will be needed further in the project .
And as for the installation of bolt IOT library, use the following command -

pip install boltiotai

And if you already have it installed, you can use the following command to update the version of the library

pip install --upgrade boltiotai

And finally add the following code -

from boltiotai import openai