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

How to install shot-chart via python pip




shot-chart - plotting shot charts from basketball-reference.com, it belongs to Classifiers:

- Development Status :: 3 - Alpha
- License :: OSI Approved :: Apache Software License

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



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_shot-chart_env

- Active the virtual environment

test_shot-chart_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_shot-chart_env

- Active the virtual environment

source test_shot-chart_env/bin/active


Step 2: OK, now, let flow below content to start the installation shot-chart

To install shot-chart on Windows(CMD):

py -m pip install shot-chart

To install shot-chart on Unix/macOs:

pip install shot-chart


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

Example:

pip install shot-chart==0.0.1


Please see the version list below table:

VersionReleased dateCommand
shot-chart 1.1.12021-04-18T23:05:56Windows:

py -m pip install shot-chart==1.1.1

Unix/macOs:

pip install shot-chart==1.1.1

shot-chart 1.1.02020-04-14T02:58:50Windows:

py -m pip install shot-chart==1.1.0

Unix/macOs:

pip install shot-chart==1.1.0

shot-chart 1.0.112020-03-30T19:26:51Windows:

py -m pip install shot-chart==1.0.11

Unix/macOs:

pip install shot-chart==1.0.11

shot-chart 1.0.102020-03-30T16:43:27Windows:

py -m pip install shot-chart==1.0.10

Unix/macOs:

pip install shot-chart==1.0.10

shot-chart 1.0.92020-03-30T16:41:33Windows:

py -m pip install shot-chart==1.0.9

Unix/macOs:

pip install shot-chart==1.0.9

shot-chart 1.0.82020-03-30T16:36:25Windows:

py -m pip install shot-chart==1.0.8

Unix/macOs:

pip install shot-chart==1.0.8

shot-chart 1.0.72020-03-30T16:33:30Windows:

py -m pip install shot-chart==1.0.7

Unix/macOs:

pip install shot-chart==1.0.7

shot-chart 1.0.62020-03-30T16:33:07Windows:

py -m pip install shot-chart==1.0.6

Unix/macOs:

pip install shot-chart==1.0.6

shot-chart 1.0.52020-03-30T16:30:00Windows:

py -m pip install shot-chart==1.0.5

Unix/macOs:

pip install shot-chart==1.0.5

shot-chart 1.0.42020-03-30T16:28:10Windows:

py -m pip install shot-chart==1.0.4

Unix/macOs:

pip install shot-chart==1.0.4

shot-chart 1.0.32020-03-30T16:26:38Windows:

py -m pip install shot-chart==1.0.3

Unix/macOs:

pip install shot-chart==1.0.3

shot-chart 1.0.22020-03-30T15:38:08Windows:

py -m pip install shot-chart==1.0.2

Unix/macOs:

pip install shot-chart==1.0.2

shot-chart 1.0.12020-03-30T15:19:54Windows:

py -m pip install shot-chart==1.0.1

Unix/macOs:

pip install shot-chart==1.0.1

shot-chart 1.0.02020-03-30T03:27:41Windows:

py -m pip install shot-chart==1.0.0

Unix/macOs:

pip install shot-chart==1.0.0

shot-chart 0.0.42020-02-24T19:21:05Windows:

py -m pip install shot-chart==0.0.4

Unix/macOs:

pip install shot-chart==0.0.4

shot-chart 0.0.32020-02-24T19:18:57Windows:

py -m pip install shot-chart==0.0.3

Unix/macOs:

pip install shot-chart==0.0.3

shot-chart 0.0.22020-02-24T19:14:20Windows:

py -m pip install shot-chart==0.0.2

Unix/macOs:

pip install shot-chart==0.0.2

shot-chart 0.0.12020-02-24T03:27:00Windows:

py -m pip install shot-chart==0.0.1

Unix/macOs:

pip install shot-chart==0.0.1


Step 4: Otherwise, you can install shot-chart from local archives:

Download the distribution file from shot_chart-1.1.1.tar.gz or the specific shot-chart version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_shot-chart_downloaded_file>

On Unix/macOs:

pip install <path_to_shot-chart_downloaded_file>


List distribution:


Project link:

- Homepage