When Running Pytest Test Through Ssh I Get "no Module Named Pandas" Although Module Is Installed
when running Pytest test through ssh I get 'no module named pandas' although module is installed both on vritual environment and locally. Can somebody point out where else should I
Solution 1:
the reason was that on remote machine there was installed old version of Python, when I converted script to Python 3 it worked just fine.
command I used to convert script is:
jupyter nbconvert --to script --execute --stdout file.ipynb | python3
Post a Comment for "When Running Pytest Test Through Ssh I Get "no Module Named Pandas" Although Module Is Installed"