Forum Archive

Pythonista 300015 [BUGS]

Tizzy

import rauth does not work in beta 300015. I believe it worked in the previous build, although I'm not sure. It definitely does work in Pythonista 2.

ImportError: No module named 'rauth'

dgelessus

Are you sure you didn't install the module yourself? Under Pythonista 2 import rauth doesn't work for me. If this is a Python 2 module that you want to use in Python 2 under Pythonista 3, you need to install it into the new site-packages-2 folder - previously Pythonista 3's Python 2 would get user-installed modules from the Pythonista 2 site-packages folder. If the module works on Python 2 and 3, you should install it into the site-packages folder without a number, then the same module can be imported by Python 2 and 3.

Tizzy

Oops. You're completely correct. I forgot I had installed that separately, using StaSh, pip install rauth.

Sorry.