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

How to install parstdex via python pip




parstdex - Persian time and date marker extractor, it belongs to Classifiers:

- License :: OSI Approved :: MIT License
- Natural Language :: Persian
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Topic :: Text Processing

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



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_parstdex_env

- Active the virtual environment

test_parstdex_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_parstdex_env

- Active the virtual environment

source test_parstdex_env/bin/active


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

To install parstdex on Windows(CMD):

py -m pip install parstdex

To install parstdex on Unix/macOs:

pip install parstdex


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

Example:

pip install parstdex==1.0.9


Please see the version list below table:

VersionReleased dateCommand
parstdex 1.3.12022-07-25T14:41:27Windows:

py -m pip install parstdex==1.3.1

Unix/macOs:

pip install parstdex==1.3.1

parstdex 1.32022-07-09T17:38:06Windows:

py -m pip install parstdex==1.3

Unix/macOs:

pip install parstdex==1.3

parstdex 1.2.12022-06-29T11:39:13Windows:

py -m pip install parstdex==1.2.1

Unix/macOs:

pip install parstdex==1.2.1

parstdex 1.2.02022-06-27T12:54:13Windows:

py -m pip install parstdex==1.2.0

Unix/macOs:

pip install parstdex==1.2.0

parstdex 1.1.72022-06-23T13:29:54Windows:

py -m pip install parstdex==1.1.7

Unix/macOs:

pip install parstdex==1.1.7

parstdex 1.1.62022-06-22T21:35:13Windows:

py -m pip install parstdex==1.1.6

Unix/macOs:

pip install parstdex==1.1.6

parstdex 1.1.52022-04-21T12:58:42Windows:

py -m pip install parstdex==1.1.5

Unix/macOs:

pip install parstdex==1.1.5

parstdex 1.1.42022-04-16T15:58:23Windows:

py -m pip install parstdex==1.1.4

Unix/macOs:

pip install parstdex==1.1.4

parstdex 1.1.32022-04-16T10:28:19Windows:

py -m pip install parstdex==1.1.3

Unix/macOs:

pip install parstdex==1.1.3

parstdex 1.1.22022-04-16T10:14:58Windows:

py -m pip install parstdex==1.1.2

Unix/macOs:

pip install parstdex==1.1.2

parstdex 1.1.12022-04-13T17:18:58Windows:

py -m pip install parstdex==1.1.1

Unix/macOs:

pip install parstdex==1.1.1

parstdex 1.1.02022-04-07T18:12:05Windows:

py -m pip install parstdex==1.1.0

Unix/macOs:

pip install parstdex==1.1.0

parstdex 1.0.102022-03-30T19:42:24Windows:

py -m pip install parstdex==1.0.10

Unix/macOs:

pip install parstdex==1.0.10

parstdex 1.0.92022-03-28T16:22:47Windows:

py -m pip install parstdex==1.0.9

Unix/macOs:

pip install parstdex==1.0.9


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_parstdex_downloaded_file>

On Unix/macOs:

pip install <path_to_parstdex_downloaded_file>


List distribution:


Project link:

- Homepage