Search code examples
pythonpandasinstallationprompt

ModuleNotFoundError: No module named 'pyts'


When i try to install in anaconda prompt:

pip install pyts

It gives to me this error: ERROR: Cannot uninstall 'llvmlite'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.

How can i solve it?


Solution

  • I would go in and check your PATH with python, there are tons of great YT videos on working with environmental variables and utilizing PATH on Windows.

    Then when installing pyts:

    pip install pyts --user
    

    It sounds like you are having issues with PATH not correctly configured first and foremost.