PIP Install


Installing Python

Good resources if you want an easy way to install python or to manage multiple version

Managing Multiple Python Versions

Alternatively you can just follow the pre-install guides

Pre-Install Guides

Installation

Recommended python3.11

Install

Stable Install

py -3 -m pip install ofscraper

Development

Pre-release

py -3 -m pip install ofscraper --pre

Development version

py -3 -m pip install git+https://github.com/datawhores/OF-Scraper.git 

Specific version of script

py -3 -m pip install ofscraper==x

where 'x' represents the version you intend to install

Upgrade

Not uninstalling has caused problems for users before

py -3 -m pip uninstall ofscraper

Next, run one of the installation commands listed below

py -3 -m pip install ofscraper --upgrade

or

py -3 -m pip install ofscraper==latest version number

Last updated