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

How to install pole via python pip




pole - A micro framework for PyGtk, PDF, XML, Utilities and Brazilan NFe., it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: Console
- Environment :: Win32 (MS Windows)
- Environment :: X11 Applications
- Environment :: X11 Applications :: GTK
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Microsoft :: Windows :: Windows NT/2000
- Operating System :: OS Independent
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: C
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: Utilities

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



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_pole_env

- Active the virtual environment

test_pole_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_pole_env

- Active the virtual environment

source test_pole_env/bin/active


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

To install pole on Windows(CMD):

py -m pip install pole

To install pole on Unix/macOs:

pip install pole


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

Example:

pip install pole==1.0.0


Please see the version list below table:

VersionReleased dateCommand
pole 1.2.02019-05-16T19:19:31Windows:

py -m pip install pole==1.2.0

Unix/macOs:

pip install pole==1.2.0

pole 1.1.42016-07-22T15:28:02Windows:

py -m pip install pole==1.1.4

Unix/macOs:

pip install pole==1.1.4

pole 1.1.32016-07-22T14:59:51Windows:

py -m pip install pole==1.1.3

Unix/macOs:

pip install pole==1.1.3

pole 1.1.22016-05-18T20:16:33Windows:

py -m pip install pole==1.1.2

Unix/macOs:

pip install pole==1.1.2

pole 1.1.12016-04-20T13:26:06Windows:

py -m pip install pole==1.1.1

Unix/macOs:

pip install pole==1.1.1

pole 1.1.02016-04-20T03:04:52Windows:

py -m pip install pole==1.1.0

Unix/macOs:

pip install pole==1.1.0

pole 1.0.02016-03-16T03:58:02Windows:

py -m pip install pole==1.0.0

Unix/macOs:

pip install pole==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pole_downloaded_file>

On Unix/macOs:

pip install <path_to_pole_downloaded_file>


List distribution:


Project link:

- Homepage