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

How to install speasy via python pip




speasy - A simple Python package to deal with main Space Physics WebServices (CDA,CSA,AMDA_Webservice,..) mainly written to ease development of SciQLop., it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.10

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



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_speasy_env

- Active the virtual environment

test_speasy_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_speasy_env

- Active the virtual environment

source test_speasy_env/bin/active


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

To install speasy on Windows(CMD):

py -m pip install speasy

To install speasy on Unix/macOs:

pip install speasy


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

Example:

pip install speasy==0.8.3


Please see the version list below table:

VersionReleased dateCommand
speasy 0.10.22022-06-28T10:10:07Windows:

py -m pip install speasy==0.10.2

Unix/macOs:

pip install speasy==0.10.2

speasy 0.10.12022-02-03T10:55:36Windows:

py -m pip install speasy==0.10.1

Unix/macOs:

pip install speasy==0.10.1

speasy 0.10.02022-02-03T10:15:46Windows:

py -m pip install speasy==0.10.0

Unix/macOs:

pip install speasy==0.10.0

speasy 0.9.12021-11-25T17:02:19Windows:

py -m pip install speasy==0.9.1

Unix/macOs:

pip install speasy==0.9.1

speasy 0.9.02021-07-29T09:31:28Windows:

py -m pip install speasy==0.9.0

Unix/macOs:

pip install speasy==0.9.0

speasy 0.8.32021-07-28T20:07:24Windows:

py -m pip install speasy==0.8.3

Unix/macOs:

pip install speasy==0.8.3


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_speasy_downloaded_file>

On Unix/macOs:

pip install <path_to_speasy_downloaded_file>


List distribution:


Project link:

- Homepage