I'm trying to make my small Python very portable so a few of my friends can simply download it and run it easily. My script uses PRAW (a Reddit API wrapper in Python) to facilitate some calls at one point, but everything I search ends up recommending installing these third-party libraries through Pip or a similar package installer of sorts.
Is there a way to just download a library like PRAW, throw it in the same folder as the main script and simply import
it? How would I go about doing this so as to not require my friends to have to install Pip?