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

How to install tensorflow-datasets via python pip




tensorflow-datasets - tensorflow/datasets is a library of datasets ready to use with TensorFlow., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Developers
- Intended Audience :: Science/Research
- License :: OSI Approved
- License :: OSI Approved :: Apache Software License
- Programming Language :: Python :: 3 :: Only
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Artificial Intelligence

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



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_tensorflow-datasets_env

- Active the virtual environment

test_tensorflow-datasets_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_tensorflow-datasets_env

- Active the virtual environment

source test_tensorflow-datasets_env/bin/active


Step 2: OK, now, let flow below content to start the installation tensorflow-datasets

To install tensorflow-datasets on Windows(CMD):

py -m pip install tensorflow-datasets

To install tensorflow-datasets on Unix/macOs:

pip install tensorflow-datasets


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

Example:

pip install tensorflow-datasets==1.0.1


Please see the version list below table:

VersionReleased dateCommand
tensorflow-datasets 4.6.02022-06-02T09:17:35Windows:

py -m pip install tensorflow-datasets==4.6.0

Unix/macOs:

pip install tensorflow-datasets==4.6.0

tensorflow-datasets 4.5.22022-01-31T15:42:28Windows:

py -m pip install tensorflow-datasets==4.5.2

Unix/macOs:

pip install tensorflow-datasets==4.5.2

tensorflow-datasets 4.5.12022-01-31T12:01:21Windows:

py -m pip install tensorflow-datasets==4.5.1

Unix/macOs:

pip install tensorflow-datasets==4.5.1

tensorflow-datasets 4.5.02022-01-26T09:39:10Windows:

py -m pip install tensorflow-datasets==4.5.0

Unix/macOs:

pip install tensorflow-datasets==4.5.0

tensorflow-datasets 4.4.02021-07-28T12:24:01Windows:

py -m pip install tensorflow-datasets==4.4.0

Unix/macOs:

pip install tensorflow-datasets==4.4.0

tensorflow-datasets 4.3.02021-05-07T11:42:04Windows:

py -m pip install tensorflow-datasets==4.3.0

Unix/macOs:

pip install tensorflow-datasets==4.3.0

tensorflow-datasets 4.2.02021-01-07T09:50:58Windows:

py -m pip install tensorflow-datasets==4.2.0

Unix/macOs:

pip install tensorflow-datasets==4.2.0

tensorflow-datasets 4.1.02020-11-04T12:07:52Windows:

py -m pip install tensorflow-datasets==4.1.0

Unix/macOs:

pip install tensorflow-datasets==4.1.0

tensorflow-datasets 4.0.12020-10-09T17:47:49Windows:

py -m pip install tensorflow-datasets==4.0.1

Unix/macOs:

pip install tensorflow-datasets==4.0.1

tensorflow-datasets 4.0.02020-10-06T19:15:21Windows:

py -m pip install tensorflow-datasets==4.0.0

Unix/macOs:

pip install tensorflow-datasets==4.0.0

tensorflow-datasets 3.2.12020-07-15T01:10:08Windows:

py -m pip install tensorflow-datasets==3.2.1

Unix/macOs:

pip install tensorflow-datasets==3.2.1

tensorflow-datasets 3.2.02020-07-10T21:38:06Windows:

py -m pip install tensorflow-datasets==3.2.0

Unix/macOs:

pip install tensorflow-datasets==3.2.0

tensorflow-datasets 3.1.02020-04-29T19:35:39Windows:

py -m pip install tensorflow-datasets==3.1.0

Unix/macOs:

pip install tensorflow-datasets==3.1.0

tensorflow-datasets 3.0.02020-04-16T02:56:04Windows:

py -m pip install tensorflow-datasets==3.0.0

Unix/macOs:

pip install tensorflow-datasets==3.0.0

tensorflow-datasets 2.1.02020-02-25T21:39:22Windows:

py -m pip install tensorflow-datasets==2.1.0

Unix/macOs:

pip install tensorflow-datasets==2.1.0

tensorflow-datasets 2.0.02020-01-24T19:54:52Windows:

py -m pip install tensorflow-datasets==2.0.0

Unix/macOs:

pip install tensorflow-datasets==2.0.0

tensorflow-datasets 1.3.22019-12-06T19:01:39Windows:

py -m pip install tensorflow-datasets==1.3.2

Unix/macOs:

pip install tensorflow-datasets==1.3.2

tensorflow-datasets 1.3.12019-12-06T18:07:45Windows:

py -m pip install tensorflow-datasets==1.3.1

Unix/macOs:

pip install tensorflow-datasets==1.3.1

tensorflow-datasets 1.3.02019-10-21T20:20:41Windows:

py -m pip install tensorflow-datasets==1.3.0

Unix/macOs:

pip install tensorflow-datasets==1.3.0

tensorflow-datasets 1.2.02019-08-20T07:51:45Windows:

py -m pip install tensorflow-datasets==1.2.0

Unix/macOs:

pip install tensorflow-datasets==1.2.0

tensorflow-datasets 1.1.02019-07-22T21:10:27Windows:

py -m pip install tensorflow-datasets==1.1.0

Unix/macOs:

pip install tensorflow-datasets==1.1.0

tensorflow-datasets 1.0.22019-05-01T19:57:21Windows:

py -m pip install tensorflow-datasets==1.0.2

Unix/macOs:

pip install tensorflow-datasets==1.0.2

tensorflow-datasets 1.0.12019-02-15T21:39:39Windows:

py -m pip install tensorflow-datasets==1.0.1

Unix/macOs:

pip install tensorflow-datasets==1.0.1


Step 4: Otherwise, you can install tensorflow-datasets from local archives:

Download the distribution file from tensorflow-datasets-4.6.0.tar.gz or the specific tensorflow-datasets version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tensorflow-datasets_downloaded_file>

On Unix/macOs:

pip install <path_to_tensorflow-datasets_downloaded_file>


List distribution:


Project link:

- Homepage
- Download