Getting an error while installing libraries

sudo pip3 install pyOpenSSL ndg-httpsclient pyasn1

While installing the libraries when I try to implement the third command. I am getting an error as shown in the image below

Kindly help me on this.

Check few things

  • if you have multiple python versions intstalled. - keep the latest only
  • as the error message says upgrade your the pip to latest. - so do that and try.
  • try to install an offline IDE and install these libraries through window powershell (Admin).

check the error its showing:
it says "Import error: No module named ‘setuptools_rust’ "
this is because the python version you are running must not have include setup_tools module beforehand.
to clear this error, run the below given code before executing the third line of the code given above:

sudo apt-get install python3-setuptools

this might help you :slight_smile: