I would like to install PRAW so I can make reddit bots and stuff, but all the install guides are confusing to me so could someone explain how to as noob friendly as possible. I've had some experience with vanilla python. Thanks!
praw
is best installed, according to the documentation, via pip
. To install pip
, you need setuptools
. Here is a simple guide on installing pip
via setuptools.
Basically, download ez_setup.py
and get-pip.py
, two Python scripts that automatically get and install setuptools
and pip
. You'll want to run the following commands in the terminal in the same directory as the location of the files, in order:
python ez_setup.py
python get-pip.py
Finally, you'll want to use pip
to get praw
. pip
is an executable file that is usually located in your python build directory. For example, in Windows, it's located in C:\Python27\scripts
. You can add that directory to your system path variable, but right now you can just navigate to that directory where pip.exe
is installed. Then, run the following command in the terminal:
pip install praw