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

How to install bsp-tool via python pip




bsp-tool - Python library for analysing .bsp files, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Topic :: Games/Entertainment
- Topic :: Games/Entertainment :: First Person Shooters
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: 3D Modeling

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



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_bsp-tool_env

- Active the virtual environment

test_bsp-tool_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_bsp-tool_env

- Active the virtual environment

source test_bsp-tool_env/bin/active


Step 2: OK, now, let flow below content to start the installation bsp-tool

To install bsp-tool on Windows(CMD):

py -m pip install bsp-tool

To install bsp-tool on Unix/macOs:

pip install bsp-tool


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

Example:

pip install bsp-tool==0.1.2


Please see the version list below table:

VersionReleased dateCommand
bsp-tool 0.3.12021-10-04T07:14:57Windows:

py -m pip install bsp-tool==0.3.1

Unix/macOs:

pip install bsp-tool==0.3.1

bsp-tool 0.3.02021-09-29T02:24:55Windows:

py -m pip install bsp-tool==0.3.0

Unix/macOs:

pip install bsp-tool==0.3.0

bsp-tool 0.2.22020-10-10T09:54:20Windows:

py -m pip install bsp-tool==0.2.2

Unix/macOs:

pip install bsp-tool==0.2.2

bsp-tool 0.2.12020-10-10T09:35:28Windows:

py -m pip install bsp-tool==0.2.1

Unix/macOs:

pip install bsp-tool==0.2.1

bsp-tool 0.2.02020-10-10T08:21:32Windows:

py -m pip install bsp-tool==0.2.0

Unix/macOs:

pip install bsp-tool==0.2.0

bsp-tool 0.1.22020-09-14T04:40:24Windows:

py -m pip install bsp-tool==0.1.2

Unix/macOs:

pip install bsp-tool==0.1.2


Step 4: Otherwise, you can install bsp-tool from local archives:

Download the distribution file from bsp_tool-0.3.1.tar.gz or the specific bsp-tool version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_bsp-tool_downloaded_file>

On Unix/macOs:

pip install <path_to_bsp-tool_downloaded_file>


List distribution:

- bsp_tool-0.1.2-py3-none-any.whl (python version >=3.6)
- bsp_tool-0.1.2.tar.gz (python version >=3.6)
- bsp_tool-0.2.0-py3-none-any.whl (python version >=3.6)
- bsp_tool-0.2.0.tar.gz (python version >=3.6)
- bsp_tool-0.2.1-py3-none-any.whl (python version >=3.6)
- bsp_tool-0.2.1.tar.gz (python version >=3.6)
- bsp_tool-0.2.2-py3-none-any.whl (python version >=3.6)
- bsp_tool-0.2.2.tar.gz (python version >=3.6)
- bsp_tool-0.3.0-py3-none-any.whl (python version >=3.7)
- bsp_tool-0.3.0-py3.9.egg (python version >=3.7)
- bsp_tool-0.3.0.tar.gz (python version >=3.7)
- bsp_tool-0.3.1-py3-none-any.whl (python version >=3.7)
- bsp_tool-0.3.1.tar.gz (python version >=3.7)


Project link:

- Homepage
- Download