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

How to install pendulo via python pip




pendulo - Python interface to Pendulo water hammer simulation kernel, it belongs to Classifiers:

- Environment :: Win32 (MS Windows)
- Intended Audience :: Developers
- Intended Audience :: End Users/Desktop
- Intended Audience :: Science/Research
- License :: Free To Use But Restricted
- License :: Other/Proprietary License
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Programming Language :: Fortran
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules
- Topic :: Utilities

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



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_pendulo_env

- Active the virtual environment

test_pendulo_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_pendulo_env

- Active the virtual environment

source test_pendulo_env/bin/active


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

To install pendulo on Windows(CMD):

py -m pip install pendulo

To install pendulo on Unix/macOs:

pip install pendulo


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

Example:

pip install pendulo==0.9.3


Please see the version list below table:

VersionReleased dateCommand
pendulo 0.9.72022-03-18T12:58:05Windows:

py -m pip install pendulo==0.9.7

Unix/macOs:

pip install pendulo==0.9.7

pendulo 0.9.62022-03-17T10:58:53Windows:

py -m pip install pendulo==0.9.6

Unix/macOs:

pip install pendulo==0.9.6

pendulo 0.9.52022-03-17T07:41:34Windows:

py -m pip install pendulo==0.9.5

Unix/macOs:

pip install pendulo==0.9.5

pendulo 0.9.42022-03-11T08:46:50Windows:

py -m pip install pendulo==0.9.4

Unix/macOs:

pip install pendulo==0.9.4

pendulo 0.9.32022-03-11T08:08:35Windows:

py -m pip install pendulo==0.9.3

Unix/macOs:

pip install pendulo==0.9.3


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

Download the distribution file from pendulo-0.9.7-cp310-cp310-win32.whl or the specific pendulo version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pendulo_downloaded_file>

On Unix/macOs:

pip install <path_to_pendulo_downloaded_file>


List distribution:


Project link: