OF-Scraper
  • Welcome
  • Requirements
  • Install
    • Pre-Install Guides
      • Linux
      • Windows
      • Mac
    • PIPX Install
    • PIP Install
    • Binary Releases
    • Docker
    • Release Info
    • Managing Multiple Python Versions
  • Getting Started and Settings
    • Config Options
      • Config Location
      • General Options
      • File Output Options
        • Placeholders
        • Responsetype Placeholders
      • Download Options
        • Download Toggles
        • Media Filtering Options
        • Advanced Download Options
      • Setting metadata path
      • Binaries Options
      • CDM Options
      • Performance Options
        • Values to Pick
      • Script Options
      • Advanced config options
        • Changing Const Values
        • Mediatype overwrites
    • Depreciated Options
    • Auth
    • Controlling Output/Logs
    • Migrating from Digitalcriminal's script
  • Using the Scraper
    • Using Prompts
      • Old Menu
      • Page 2
    • Username selection or Fuzzy Search
    • Basic Automation with command-line
      • Basic Actions
        • Liking/Unliking Post
        • Downloading Content
          • Downloading Text Files
          • Downloading Purchases From Deleted Models
        • Multiple Actions
      • Model Filtering/Sorting
        • Price Filtering/Sort
      • Advanced Args
      • Scripting tips
      • Enable label scan
    • Recipes
      • Adding Proxy
      • Redownload Deleted Downloads
  • Content Check Modes
    • Table Columns
    • Table Management
      • Pre 3.10.7 filtering
  • Scraping Individual Posts or Media
  • Metadata
    • Schema
    • Creating Metadata
    • Metadata location
  • CDM Setup
    • CDM issues
  • FAQ/Common Issues
    • Page 1
  • Command Reference
    • Shared Options
      • General Program Options
        • Program Options
        • Logging Options
        • Filename Modification Options
        • Media Filters Options
        • Download Options
        • Advanced Program Options
      • Shared Scrape and Metadata Check Mode Options
        • User List Filter Options
          • Advanced User Filters
        • User Selection Options
        • Model Sorting & Processing Options
        • Content Options
        • Automation Options
        • Advanced Search & Processing Options
    • Main Scraper Options
    • Metadata Check Mode Options
    • Content Check Modes Options
    • Manual Mode Options
  • Request Change to Doc
  • Testing
Powered by GitBook
On this page
  • Installing Python
  • Getting PIPX
  • Installing OF-Scraper
  1. Install

PIPX Install

PreviousMacNextPIP Install

Last updated 1 year ago


Installing Python

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


Alternatively you can just follow the pre-install guides

Tip: You can use the --python command to change the default python interpreter used for pipx


Getting PIPX

Installing PIPX with PIP is recommended This way you can control which python it is install with


Installing OF-Scraper

Tip: Use the --verbose command to get more details about the install process

Install

Stable install

pipx install ofscraper

Development

Pre-release

pipx install ofscraper --pip-args=--pre

Development

pipx install git+https://github.com/datawhores/OF-Scraper.git 

Specific version of script

pipx install ofscraper==version --force

where x is the version you want to install

Specific version of python

Append --python $(where {python version}
Example: pipx install ofscraper --python $(where python3.11)

Upgrade

Not uninstalling has caused problems for users before

 pipx upgrade ofscraper

or

pipx install ofscraper==x --force
Append --python $(where {python version}

Install

Stable Install

pipx install ofscraper

Development

Pre-release

pipx install ofscraper --pip-args=--pre

Development version

pipx install git+https://github.com/datawhores/OF-Scraper.git 

Specific version of script

pipx install ofscraper==x --force

where x is the version you want to install

Specific version of python

Append --python $(which {python version})
Example: pipx install ofscraper --python $(which python3.11)

Upgrading

Not uninstalling has caused problems for users before

 pipx upgrade ofscraper

or

pipx install ofscraper==x --force
Append --python $(where {python version}

Managing Multiple Python Versions
Pre-Install Guides
LogoGitHub - pypa/pipx: Install and Run Python Applications in Isolated EnvironmentsGitHub