Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install tinycrawler via python pip




tinycrawler - Small customizable multiprocessing multi-proxy crawler., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Information Technology
- License :: OSI Approved :: MIT License
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Information Analysis

When you know about this project and you want to new install tinycrawler to support your project or you get trouble as ModuleNotFoundError: No module named "tinycrawler" or ImportError: cannot import name "tinycrawler" in your project, let follow this tutorial to install tinycrawler



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_tinycrawler_env

- Active the virtual environment

test_tinycrawler_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_tinycrawler_env

- Active the virtual environment

source test_tinycrawler_env/bin/active


Step 2: OK, now, let flow below content to start the installation tinycrawler

To install tinycrawler on Windows(CMD):

py -m pip install tinycrawler

To install tinycrawler on Unix/macOs:

pip install tinycrawler


Step 3: If you want to install a specific tinycrawler version, add ==<tinycrawler version> to the end command line

Example:

pip install tinycrawler==1.0.0


Please see the version list below table:

VersionReleased dateCommand
tinycrawler 1.7.52018-11-22T09:17:45Windows:

py -m pip install tinycrawler==1.7.5

Unix/macOs:

pip install tinycrawler==1.7.5

tinycrawler 1.7.12018-11-16T14:26:26Windows:

py -m pip install tinycrawler==1.7.1

Unix/macOs:

pip install tinycrawler==1.7.1

tinycrawler 1.7.02018-11-16T14:16:29Windows:

py -m pip install tinycrawler==1.7.0

Unix/macOs:

pip install tinycrawler==1.7.0

tinycrawler 1.6.12018-11-05T10:04:39Windows:

py -m pip install tinycrawler==1.6.1

Unix/macOs:

pip install tinycrawler==1.6.1

tinycrawler 1.6.02018-11-04T08:18:57Windows:

py -m pip install tinycrawler==1.6.0

Unix/macOs:

pip install tinycrawler==1.6.0

tinycrawler 1.5.02018-10-04T10:08:43Windows:

py -m pip install tinycrawler==1.5.0

Unix/macOs:

pip install tinycrawler==1.5.0

tinycrawler 1.2.02018-06-17T19:18:06Windows:

py -m pip install tinycrawler==1.2.0

Unix/macOs:

pip install tinycrawler==1.2.0

tinycrawler 1.0.12018-06-16T15:46:00Windows:

py -m pip install tinycrawler==1.0.1

Unix/macOs:

pip install tinycrawler==1.0.1

tinycrawler 1.0.02018-06-16T15:45:22Windows:

py -m pip install tinycrawler==1.0.0

Unix/macOs:

pip install tinycrawler==1.0.0


Step 4: Otherwise, you can install tinycrawler from local archives:

Download the distribution file from tinycrawler-1.7.5.tar.gz or the specific tinycrawler version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tinycrawler_downloaded_file>

On Unix/macOs:

pip install <path_to_tinycrawler_downloaded_file>


List distribution:


Project link:

- Homepage