Issue install Libraries pip3

Sudo apt-get update
Sudo pip3 install boltiot
Sudo pip3 install pyOpenSSL ndg-httpsclient pyasnl
Sudo pip3 install ‘request[security]’

Hi @vazxavier91,

What exactly are you trying to achieve ? I suppose are you trying to install the boltiot packages but first check if you have python3 on your system by typing the below command.

sudo python3 -V

If it is not installed then install python3 and then follow the run the below commands in terminal.

sudo apt-get update
sudo apt-get install python3-pip
sudo pip3 install boltiot

Do let me know in case you need any other information.

After pyasnl command execution

Hi @vazxavier91,

As I can see your boltiot packages is already installed on your system. Verify it in python3 terminal by typing the below commands.

python3
from boltiot import Bolt

Hi @vazxavier91,

First type

sudo python3

then enter then type the below command in python terminal and then enter.

from boltiot import Bolt

54%20PM

Hi @vazxavier91,

As you can see in the terminal , you are able to import the boltiot packages inside the python terminal. Now you can continue doing your experiment

To exit from python terminal, type the below command.

exit()