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

How to install pysmo via python pip




pysmo - Python module to read/write/manipulate SAC (Seismic Analysis Code) files, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)

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



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_pysmo_env

- Active the virtual environment

test_pysmo_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_pysmo_env

- Active the virtual environment

source test_pysmo_env/bin/active


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

To install pysmo on Windows(CMD):

py -m pip install pysmo

To install pysmo on Unix/macOs:

pip install pysmo


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

Example:

pip install pysmo==0.6.1


Please see the version list below table:

VersionReleased dateCommand
pysmo 0.8.02021-08-23T10:46:22Windows:

py -m pip install pysmo==0.8.0

Unix/macOs:

pip install pysmo==0.8.0

pysmo 0.7.72021-06-29T15:46:29Windows:

py -m pip install pysmo==0.7.7

Unix/macOs:

pip install pysmo==0.7.7

pysmo 0.7.62020-12-14T16:23:58Windows:

py -m pip install pysmo==0.7.6

Unix/macOs:

pip install pysmo==0.7.6

pysmo 0.7.52019-08-19T10:47:28Windows:

py -m pip install pysmo==0.7.5

Unix/macOs:

pip install pysmo==0.7.5

pysmo 0.7.42019-01-11T01:10:18Windows:

py -m pip install pysmo==0.7.4

Unix/macOs:

pip install pysmo==0.7.4

pysmo 0.7.32018-12-05T02:50:05Windows:

py -m pip install pysmo==0.7.3

Unix/macOs:

pip install pysmo==0.7.3

pysmo 0.7.22018-12-04T15:15:35Windows:

py -m pip install pysmo==0.7.2

Unix/macOs:

pip install pysmo==0.7.2

pysmo 0.6.12018-09-28T15:11:36Windows:

py -m pip install pysmo==0.6.1

Unix/macOs:

pip install pysmo==0.6.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pysmo_downloaded_file>

On Unix/macOs:

pip install <path_to_pysmo_downloaded_file>


List distribution:


Project link: