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

How to install obd via python pip




obd - Serial module for handling live sensor data from a vehicle's OBD-II port, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v2 (GPLv2)
- Operating System :: POSIX :: Linux
- Topic :: System
- Topic :: System :: Logging
- Topic :: System :: Monitoring

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



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_obd_env

- Active the virtual environment

test_obd_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_obd_env

- Active the virtual environment

source test_obd_env/bin/active


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

To install obd on Windows(CMD):

py -m pip install obd

To install obd on Unix/macOs:

pip install obd


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

Example:

pip install obd==0.1.0


Please see the version list below table:

VersionReleased dateCommand
obd 0.7.12019-05-15T04:25:17Windows:

py -m pip install obd==0.7.1

Unix/macOs:

pip install obd==0.7.1

obd 0.7.02018-11-05T06:05:25Windows:

py -m pip install obd==0.7.0

Unix/macOs:

pip install obd==0.7.0

obd 0.6.12016-08-02T01:03:54Windows:

py -m pip install obd==0.6.1

Unix/macOs:

pip install obd==0.6.1

obd 0.6.02016-07-27T22:03:49Windows:

py -m pip install obd==0.6.0

Unix/macOs:

pip install obd==0.6.0

obd 0.5.12016-07-04T01:41:37Windows:

py -m pip install obd==0.5.1

Unix/macOs:

pip install obd==0.5.1

obd 0.5.02016-04-04T02:30:19Windows:

py -m pip install obd==0.5.0

Unix/macOs:

pip install obd==0.5.0

obd 0.4.12015-07-05T19:27:00Windows:

py -m pip install obd==0.4.1

Unix/macOs:

pip install obd==0.4.1

obd 0.4.02015-05-05T00:37:45Windows:

py -m pip install obd==0.4.0

Unix/macOs:

pip install obd==0.4.0

obd 0.3.02015-02-07T22:59:05Windows:

py -m pip install obd==0.3.0

Unix/macOs:

pip install obd==0.3.0

obd 0.2.02014-12-16T05:18:38Windows:

py -m pip install obd==0.2.0

Unix/macOs:

pip install obd==0.2.0

obd 0.1.02014-11-04T18:05:48Windows:

py -m pip install obd==0.1.0

Unix/macOs:

pip install obd==0.1.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_obd_downloaded_file>

On Unix/macOs:

pip install <path_to_obd_downloaded_file>


List distribution:

- obd-0.1.0.tar.gz
- obd-0.2.0.tar.gz
- obd-0.3.0.tar.gz
- obd-0.4.0.tar.gz
- obd-0.4.1.zip
- obd-0.5.0.tar.gz
- obd-0.5.1.tar.gz
- obd-0.6.0.tar.gz
- obd-0.6.1.tar.gz
- obd-0.7.0.tar.gz
- obd-0.7.1.tar.gz


Project link:

- Homepage