Installed module using pip, not found

后端 未结 5 1059
暗喜
暗喜 2020-11-29 11:50

I am trying to install a package called \"simpleguitk\" via pip. (On Ubuntu 16.04 with Python 3.5)
After running

sudo -H pip3 install simpleguitk
         


        
5条回答
  •  悲&欢浪女
    2020-11-29 12:15

    The module may be installed but the program doesn't run. This happens because of 2 different versions of python co-existing. So run your Py Script with the location of the python version you have installed the module for, say usr/bin/python python.py or /usr/bin/python3 python.py.

    Hope this helps in your progress!

提交回复
热议问题