Getting the packages in place
Installing the required packages
Windows
If you downloaded the zip:
Head over to the folder where all the files are stored. Once you are there, you should see a bar at the top showing the directory's path. Double click that:

Once you double-click it, type cmd
and press enter. You should see a Command Prompt window pop up that is placed inside your source folder.

Once in, type: pip3 install -r requirements.txt
. Word to word! Again, make sure you are in the directory. Give it a few minutes and let it download the packages.
Once done, you should be seeing something like this:

If you cloned the repo
In the place where you initially cloned the repo, type this command:
cd redditvideomakerbot
You can now run:
pip3 install -r requirements.txt
MacOS
First, go to the folders where the code is stored.
If you downloaded the zip**:
Go to the Downloads folder:

Then, click finder -> services -> new terminal at folder:

Once you open the terminal, it should look something like this:

Type in this command (or just copy it) pip3 install -r requirements.txt
:

And this should appear on the screen!

If you cloned the repo:
In the place where you initially cloned the repo, type this command:
cd redditvideomakerbot
Then install the
pip3 install -r requirements.txt

And this should appear on the screen!

Linux
First, go to the folders where the code is stored.
If you downloaded the zip**
Go to the Downloads folder, then right-click on the zip file and click "Open folder in terminal":
Then, type this command:
pip3 install -r requirements.txt
And everything should be installed!
If you cloned the repo:
In the place where you initially cloned the repo, type this command:
cd redditvideomakerbot
You can now run:
pip3 install -r requirements.txt
Last updated