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

How to install polygon via python pip




polygon - A Complete Python Wrapper for Polygon.io APIs., it belongs to Classifiers:

- Topic :: Office/Business
- Topic :: Office/Business :: Financial
- Topic :: Office/Business :: Financial :: Investment

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



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_polygon_env

- Active the virtual environment

test_polygon_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_polygon_env

- Active the virtual environment

source test_polygon_env/bin/active


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

To install polygon on Windows(CMD):

py -m pip install polygon

To install polygon on Unix/macOs:

pip install polygon


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

Example:

pip install polygon==0.7.0


Please see the version list below table:

VersionReleased dateCommand
polygon 1.0.92022-07-11T11:32:40Windows:

py -m pip install polygon==1.0.9

Unix/macOs:

pip install polygon==1.0.9

polygon 1.0.82022-06-25T09:32:04Windows:

py -m pip install polygon==1.0.8

Unix/macOs:

pip install polygon==1.0.8

polygon 1.0.72022-06-05T08:54:55Windows:

py -m pip install polygon==1.0.7

Unix/macOs:

pip install polygon==1.0.7

polygon 1.0.62022-04-21T13:08:23Windows:

py -m pip install polygon==1.0.6

Unix/macOs:

pip install polygon==1.0.6

polygon 1.0.52022-03-04T09:48:35Windows:

py -m pip install polygon==1.0.5

Unix/macOs:

pip install polygon==1.0.5

polygon 1.0.42022-02-11T11:39:55Windows:

py -m pip install polygon==1.0.4

Unix/macOs:

pip install polygon==1.0.4

polygon 1.0.32022-02-11T10:55:19Windows:

py -m pip install polygon==1.0.3

Unix/macOs:

pip install polygon==1.0.3

polygon 1.0.22022-02-06T11:23:20Windows:

py -m pip install polygon==1.0.2

Unix/macOs:

pip install polygon==1.0.2

polygon 1.0.12022-01-29T17:00:48Windows:

py -m pip install polygon==1.0.1

Unix/macOs:

pip install polygon==1.0.1

polygon 1.0.02022-01-25T14:45:46Windows:

py -m pip install polygon==1.0.0

Unix/macOs:

pip install polygon==1.0.0

polygon 0.9.82022-01-18T12:49:08Windows:

py -m pip install polygon==0.9.8

Unix/macOs:

pip install polygon==0.9.8

polygon 0.9.72021-11-29T05:52:48Windows:

py -m pip install polygon==0.9.7

Unix/macOs:

pip install polygon==0.9.7

polygon 0.9.62021-11-16T08:36:14Windows:

py -m pip install polygon==0.9.6

Unix/macOs:

pip install polygon==0.9.6

polygon 0.9.52021-11-07T11:49:17Windows:

py -m pip install polygon==0.9.5

Unix/macOs:

pip install polygon==0.9.5

polygon 0.9.22021-11-05T15:57:42Windows:

py -m pip install polygon==0.9.2

Unix/macOs:

pip install polygon==0.9.2

polygon 0.9.12021-11-05T15:34:37Windows:

py -m pip install polygon==0.9.1

Unix/macOs:

pip install polygon==0.9.1

polygon 0.9.02021-10-29T08:36:06Windows:

py -m pip install polygon==0.9.0

Unix/macOs:

pip install polygon==0.9.0

polygon 0.8.62021-10-28T18:12:52Windows:

py -m pip install polygon==0.8.6

Unix/macOs:

pip install polygon==0.8.6

polygon 0.8.52021-10-23T16:22:56Windows:

py -m pip install polygon==0.8.5

Unix/macOs:

pip install polygon==0.8.5

polygon 0.8.22021-10-22T09:21:57Windows:

py -m pip install polygon==0.8.2

Unix/macOs:

pip install polygon==0.8.2

polygon 0.7.02021-10-20T09:27:36Windows:

py -m pip install polygon==0.7.0

Unix/macOs:

pip install polygon==0.7.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_polygon_downloaded_file>

On Unix/macOs:

pip install <path_to_polygon_downloaded_file>


List distribution:


Project link:

- Homepage
- Discussions
- Issue Tracker
- Support