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

How to install SpharaPy via python pip




SpharaPy - SPHARA Implementation in Python, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: BSD License

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



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_SpharaPy_env

- Active the virtual environment

test_SpharaPy_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_SpharaPy_env

- Active the virtual environment

source test_SpharaPy_env/bin/active


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

To install SpharaPy on Windows(CMD):

py -m pip install SpharaPy

To install SpharaPy on Unix/macOs:

pip install SpharaPy


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

Example:

pip install SpharaPy==1.0.10


Please see the version list below table:

VersionReleased dateCommand
SpharaPy 1.1.22022-01-31T19:22:41Windows:

py -m pip install SpharaPy==1.1.2

Unix/macOs:

pip install SpharaPy==1.1.2

SpharaPy 1.1.12022-01-30T18:30:10Windows:

py -m pip install SpharaPy==1.1.1

Unix/macOs:

pip install SpharaPy==1.1.1

SpharaPy 1.1.02020-09-30T11:02:17Windows:

py -m pip install SpharaPy==1.1.0

Unix/macOs:

pip install SpharaPy==1.1.0

SpharaPy 1.0.152020-01-22T14:23:30Windows:

py -m pip install SpharaPy==1.0.15

Unix/macOs:

pip install SpharaPy==1.0.15

SpharaPy 1.0.142020-01-10T10:23:48Windows:

py -m pip install SpharaPy==1.0.14

Unix/macOs:

pip install SpharaPy==1.0.14

SpharaPy 1.0.132019-09-27T07:36:27Windows:

py -m pip install SpharaPy==1.0.13

Unix/macOs:

pip install SpharaPy==1.0.13

SpharaPy 1.0.122019-07-15T14:52:14Windows:

py -m pip install SpharaPy==1.0.12

Unix/macOs:

pip install SpharaPy==1.0.12

SpharaPy 1.0.112019-04-16T14:10:13Windows:

py -m pip install SpharaPy==1.0.11

Unix/macOs:

pip install SpharaPy==1.0.11

SpharaPy 1.0.102019-04-02T14:45:00Windows:

py -m pip install SpharaPy==1.0.10

Unix/macOs:

pip install SpharaPy==1.0.10


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

Download the distribution file from SpharaPy-1.1.2-py3-none-any.whl or the specific SpharaPy version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_SpharaPy_downloaded_file>

On Unix/macOs:

pip install <path_to_SpharaPy_downloaded_file>


List distribution:


Project link:

- Documentation