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

How to install exodata via python pip




exodata - Exoplanet catalogue interface, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Astronomy

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



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_exodata_env

- Active the virtual environment

test_exodata_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_exodata_env

- Active the virtual environment

source test_exodata_env/bin/active


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

To install exodata on Windows(CMD):

py -m pip install exodata

To install exodata on Unix/macOs:

pip install exodata


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

Example:

pip install exodata==1


Please see the version list below table:

VersionReleased dateCommand
exodata 2.1.72017-05-19T22:54:55Windows:

py -m pip install exodata==2.1.7

Unix/macOs:

pip install exodata==2.1.7

exodata 2.1.62016-05-30T12:23:39Windows:

py -m pip install exodata==2.1.6

Unix/macOs:

pip install exodata==2.1.6

exodata 2.1.52015-11-11T14:54:29Windows:

py -m pip install exodata==2.1.5

Unix/macOs:

pip install exodata==2.1.5

exodata 2.1.42015-11-04T21:41:52Windows:

py -m pip install exodata==2.1.4

Unix/macOs:

pip install exodata==2.1.4

exodata 2.1.32015-10-16T11:08:35Windows:

py -m pip install exodata==2.1.3

Unix/macOs:

pip install exodata==2.1.3

exodata 2.1.12015-10-13T10:33:57Windows:

py -m pip install exodata==2.1.1

Unix/macOs:

pip install exodata==2.1.1

exodata 2.12015-10-12T18:29:22Windows:

py -m pip install exodata==2.1

Unix/macOs:

pip install exodata==2.1

exodata 2.02015-10-09T16:51:37Windows:

py -m pip install exodata==2.0

Unix/macOs:

pip install exodata==2.0

exodata 1.1.1.2.22015-06-17T22:52:58Windows:

py -m pip install exodata==1.1.1.2.2

Unix/macOs:

pip install exodata==1.1.1.2.2

exodata 1.1.12015-04-17T14:30:12Windows:

py -m pip install exodata==1.1.1

Unix/macOs:

pip install exodata==1.1.1

exodata 12014-07-04T14:28:39Windows:

py -m pip install exodata==1

Unix/macOs:

pip install exodata==1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_exodata_downloaded_file>

On Unix/macOs:

pip install <path_to_exodata_downloaded_file>


List distribution:

- exodata-1.1.1-py2-none-any.whl
- exodata-1.1.1.tar.gz
- exodata-1.1.1.2.2.tar.gz
- exodata-2.0a150911.tar.gz
- exodata-2.0b151006.tar.gz
- exodata-2.0.tar.gz
- exodata-2.1.tar.gz
- exodata-2.1.1.tar.gz
- exodata-2.1.3.tar.gz
- exodata-2.1.4.tar.gz
- exodata-2.1.5.tar.gz
- exodata-2.1.6.tar.gz
- exodata-2.1.7.tar.gz


Project link:

- Homepage