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

How to install wrds via python pip




wrds - Python access to WRDS Data, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: Financial and Insurance Industry
- Topic :: Office/Business :: Financial

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



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_wrds_env

- Active the virtual environment

test_wrds_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_wrds_env

- Active the virtual environment

source test_wrds_env/bin/active


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

To install wrds on Windows(CMD):

py -m pip install wrds

To install wrds on Unix/macOs:

pip install wrds


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

Example:

pip install wrds==0.0.5


Please see the version list below table:

VersionReleased dateCommand
wrds 3.1.22022-07-11T16:10:28Windows:

py -m pip install wrds==3.1.2

Unix/macOs:

pip install wrds==3.1.2

wrds 3.1.12021-09-14T19:08:43Windows:

py -m pip install wrds==3.1.1

Unix/macOs:

pip install wrds==3.1.1

wrds 3.1.02021-08-19T00:18:27Windows:

py -m pip install wrds==3.1.0

Unix/macOs:

pip install wrds==3.1.0

wrds 3.0.102021-05-18T18:38:51Windows:

py -m pip install wrds==3.0.10

Unix/macOs:

pip install wrds==3.0.10

wrds 3.0.82019-06-07T20:00:36Windows:

py -m pip install wrds==3.0.8

Unix/macOs:

pip install wrds==3.0.8

wrds 3.0.72019-04-23T16:42:22Windows:

py -m pip install wrds==3.0.7

Unix/macOs:

pip install wrds==3.0.7

wrds 3.0.62018-11-16T18:51:12Windows:

py -m pip install wrds==3.0.6

Unix/macOs:

pip install wrds==3.0.6

wrds 3.0.52018-10-05T19:41:03Windows:

py -m pip install wrds==3.0.5

Unix/macOs:

pip install wrds==3.0.5

wrds 3.0.42018-07-13T12:52:22Windows:

py -m pip install wrds==3.0.4

Unix/macOs:

pip install wrds==3.0.4

wrds 3.0.32018-05-07T20:05:39Windows:

py -m pip install wrds==3.0.3

Unix/macOs:

pip install wrds==3.0.3

wrds 3.0.22017-11-16T19:19:49Windows:

py -m pip install wrds==3.0.2

Unix/macOs:

pip install wrds==3.0.2

wrds 3.0.12017-07-01T02:24:06Windows:

py -m pip install wrds==3.0.1

Unix/macOs:

pip install wrds==3.0.1

wrds 3.02017-06-30T20:36:13Windows:

py -m pip install wrds==3.0

Unix/macOs:

pip install wrds==3.0

wrds 0.0.62017-03-13T19:13:36Windows:

py -m pip install wrds==0.0.6

Unix/macOs:

pip install wrds==0.0.6

wrds 0.0.52015-12-10T21:30:43Windows:

py -m pip install wrds==0.0.5

Unix/macOs:

pip install wrds==0.0.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wrds_downloaded_file>

On Unix/macOs:

pip install <path_to_wrds_downloaded_file>


List distribution:


Project link:

- Homepage
- Documentation
- Repository