Search code examples
pythonpython-3.xraspberry-piraspberry-pi3

Raspberry Pi cannot find module "ezsheets"


I have a Python script that uses telethon.sync and ezsheets, and it works well using Python 3 on my PC. When I try to run it on my Raspberry Pi, it says that it cannot find either module, even though I have installed them both using pip install. It is a Raspberry Pi 3. What am I doing wrong?

I have already installed the modules using sudo pip3 install ezsheets and sudo pip3 install telethon.


Solution

  • On Raspberry Pi, try using:

    Python 3:

    sudo pip3 install ezsheets
    sudo pip3 install telethon
    

    Python 2:

    sudo pip install ezsheets
    sudo pip install telethon