Importing library 'SSHLibrary' failed: ModuleNotFoundError: No module named 'SSHLibrary' - ssh

Followed all the steps here https://giters.com/robotframework/SSHLibrary#support
**Got the following versions:
roboframework : 4.1.3
python : 3.9.7
ssh library : 3.8.0
paramiko : 2.9.2
pscp : release 0.76
win_inet_pton : 1.1.0**
Already restarted, but when executing a simple script of open connection, it is still showing Module Not Found
[ ERROR ] Error in file 'c:\Users\OneDrive\robotAuto\App_Testsuites\Regression\ssh.robot' on line 8: Importing library 'SSHLibrary' failed: ModuleNotFoundError: No module named 'SSHLibrary'

the SSHLibrary is not installed on your system. To use this library with Robot Framework, you need to install it first. You can install it using the following pip command:
pip install robotframework-sshlibrary

Related

ModuleNotFoundError: No module name selenium

When I try to run an automation.py code that I created in python using Selenium I get the error message ModuleNotFoundError: No module named 'selenium'. I have tried to run the pip install. I am using python version 3.
pip3 install selenium
But I still get the error message.
pip3 install selenium-webdriver

ModuleNotFoundError: No module name 'Cython'

I am trying to install pandas module on PyCharm. When i try to install it it gave me this error: "ModuleNotFoundError: No module name 'Cython' " (Screen: https://prnt.sc/qafwcy)
So i went on the CMD to try to install the Cython package with this command: py -m pip install Cython , which gave me an other error: "The script, f2py.exe is install in 'C:\xxx.xxxx, which is not a PATH. (Screen: https://prnt.sc/qafvx3)
Does anyone had the same problem and know how to fix it?
Thank you
Pycharm uses a virtual environment - one separate from your python install on your computer. This is to isolate your development environment from the one you would use on your computer.
Enter your pip commands here instead:

How to install QCustomPlot for PyQt5 on Arch Linux

I want to use QCustomPlot with PyQt5 on Arch Linux but I'm having trouble installing it. I already installed the sip package but the setup fails with the following error:
ModuleNotFoundError: No module named 'sipdistutils'
Link to repo: https://github.com/dimv36/QCustomPlot-PyQt5
You need to install both python-sip and sip otherwise the setup will fail:
pacman -S python-pyqt5 python-sip sip
pip install git+https://github.com/dimv36/QCustomPlot-PyQt5
Some examples

Im trying to install tensorflow on Anaconda that supports python 2.7 and I'm stuck

Im trying to install tensorflow on Anaconda that supports python 2.7, I did as the manual given on the tensorflow homepage told me to do, and this error occurs every time.
UnsatisfiableError: The following specifications were found to be in conflict:
- python 2.7*
- tensorflow -> protobuf ==3.1.0 -> python 3.5*
Use "conda info " to see the dependencies for each package.
could you help me out??
and this is my conda info
conda info
Current conda install:
platform : win-64
conda version : 4.3.7
conda is private : False
conda-env version : 4.3.7
conda-build version : 2.0.2
python version : 2.7.12.final.0
requests version : 2.12.4
root environment : C:\Users\sml\Anaconda2 (writable)
default environment : C:\Users\sml\Anaconda2\envs\tensoflow
envs directories : C:\Users\sml\Anaconda2\envs
package cache : C:\Users\sml\Anaconda2\pkgs
channel URLs : https://repo.continuum.io/pkgs/free/win-64
https://repo.continuum.io/pkgs/free/noarch
https://repo.continuum.io/pkgs/r/win-64
https://repo.continuum.io/pkgs/r/noarch
https://repo.continuum.io/pkgs/pro/win-64
https://repo.continuum.io/pkgs/pro/noarch
https://repo.continuum.io/pkgs/msys2/win-64
https://repo.continuum.io/pkgs/msys2/noarch
config file : None
offline mode : False
user-agent : conda/4.3.7 requests/2.12.4 CPython/2.7.12 Windows/10 Windows/10.0.14393
As said in the comments, on Microsoft Windows TensorFlow only runs on Python 3.5 64-bit.
Python 2.7 is unsupported because TensorFlow uses many C++11 features (e.g., auto), but the version of the Microsoft Visual C++ Compiler used for Python 2.7 is 2008.

Win10 scrapy install

I have python install as well as c++ complier. When I run "pip install scrapy" from the command line it starts to install but I get a couple errors surrounding the libxml and libxslt.
error: 'xslt-config' is not recognized...
cannot open libxml/xmlversion.h no such file or directory
compile failed windows C++ for python failed with exit status 2
could not find function xmlCheckVersion
is libxml installed.....
Use this:
set STATICBUILD=true && pip install lxml
Find the documentation here