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

How to install idaes-pse via python pip




idaes-pse - IDAES Process Systems Engineering Framework, it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Intended Audience :: End Users/Desktop
- Intended Audience :: Science/Research
- License :: OSI Approved :: BSD License
- Natural Language :: English
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Unix
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Programming Language :: Python :: Implementation
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Chemistry
- Topic :: Scientific/Engineering :: Mathematics
- Topic :: Software Development
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_idaes-pse_env

- Active the virtual environment

test_idaes-pse_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_idaes-pse_env

- Active the virtual environment

source test_idaes-pse_env/bin/active


Step 2: OK, now, let flow below content to start the installation idaes-pse

To install idaes-pse on Windows(CMD):

py -m pip install idaes-pse

To install idaes-pse on Unix/macOs:

pip install idaes-pse


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

Example:

pip install idaes-pse==1.4.0


Please see the version list below table:

VersionReleased dateCommand
idaes-pse 1.13.02022-03-16T20:31:56Windows:

py -m pip install idaes-pse==1.13.0

Unix/macOs:

pip install idaes-pse==1.13.0

idaes-pse 1.12.12022-01-22T00:21:34Windows:

py -m pip install idaes-pse==1.12.1

Unix/macOs:

pip install idaes-pse==1.12.1

idaes-pse 1.12.02021-12-23T19:13:03Windows:

py -m pip install idaes-pse==1.12.0

Unix/macOs:

pip install idaes-pse==1.12.0

idaes-pse 1.11.02021-09-02T22:55:14Windows:

py -m pip install idaes-pse==1.11.0

Unix/macOs:

pip install idaes-pse==1.11.0

idaes-pse 1.10.12021-06-25T01:41:01Windows:

py -m pip install idaes-pse==1.10.1

Unix/macOs:

pip install idaes-pse==1.10.1

idaes-pse 1.10.02021-06-04T21:03:27Windows:

py -m pip install idaes-pse==1.10.0

Unix/macOs:

pip install idaes-pse==1.10.0

idaes-pse 1.9.02021-03-04T02:23:22Windows:

py -m pip install idaes-pse==1.9.0

Unix/macOs:

pip install idaes-pse==1.9.0

idaes-pse 1.8.02021-01-14T00:39:26Windows:

py -m pip install idaes-pse==1.8.0

Unix/macOs:

pip install idaes-pse==1.8.0

idaes-pse 1.7.02020-10-08T23:40:01Windows:

py -m pip install idaes-pse==1.7.0

Unix/macOs:

pip install idaes-pse==1.7.0

idaes-pse 1.6.32020-08-21T00:06:14Windows:

py -m pip install idaes-pse==1.6.3

Unix/macOs:

pip install idaes-pse==1.6.3

idaes-pse 1.6.22020-08-07T07:15:55Windows:

py -m pip install idaes-pse==1.6.2

Unix/macOs:

pip install idaes-pse==1.6.2

idaes-pse 1.6.12020-07-23T05:47:38Windows:

py -m pip install idaes-pse==1.6.1

Unix/macOs:

pip install idaes-pse==1.6.1

idaes-pse 1.6.02020-07-21T04:59:14Windows:

py -m pip install idaes-pse==1.6.0

Unix/macOs:

pip install idaes-pse==1.6.0

idaes-pse 1.5.12020-05-08T14:43:15Windows:

py -m pip install idaes-pse==1.5.1

Unix/macOs:

pip install idaes-pse==1.5.1

idaes-pse 1.5.02020-04-10T22:55:50Windows:

py -m pip install idaes-pse==1.5.0

Unix/macOs:

pip install idaes-pse==1.5.0

idaes-pse 1.4.42020-02-08T02:18:42Windows:

py -m pip install idaes-pse==1.4.4

Unix/macOs:

pip install idaes-pse==1.4.4

idaes-pse 1.4.32020-01-18T01:27:54Windows:

py -m pip install idaes-pse==1.4.3

Unix/macOs:

pip install idaes-pse==1.4.3

idaes-pse 1.4.22019-12-19T23:28:58Windows:

py -m pip install idaes-pse==1.4.2

Unix/macOs:

pip install idaes-pse==1.4.2

idaes-pse 1.4.12019-12-12T22:58:50Windows:

py -m pip install idaes-pse==1.4.1

Unix/macOs:

pip install idaes-pse==1.4.1

idaes-pse 1.4.02019-11-27T22:22:24Windows:

py -m pip install idaes-pse==1.4.0

Unix/macOs:

pip install idaes-pse==1.4.0


Step 4: Otherwise, you can install idaes-pse from local archives:

Download the distribution file from idaes-pse-1.13.0.tar.gz or the specific idaes-pse version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_idaes-pse_downloaded_file>

On Unix/macOs:

pip install <path_to_idaes-pse_downloaded_file>


List distribution:

- idaes-pse-1.4.0.tar.gz
- idaes_pse-1.4.0-py3-none-any.whl
- idaes-pse-1.4.1.tar.gz
- idaes_pse-1.4.1-py3-none-any.whl
- idaes-pse-1.4.2.tar.gz
- idaes_pse-1.4.2-py3-none-any.whl
- idaes-pse-1.4.3.tar.gz
- idaes_pse-1.4.3-py3-none-any.whl
- idaes-pse-1.4.4.tar.gz
- idaes_pse-1.4.4-py3-none-any.whl
- idaes-pse-1.5.0.tar.gz
- idaes_pse-1.5.0-py3-none-any.whl
- idaes-pse-1.5.1.tar.gz
- idaes_pse-1.5.1-py3-none-any.whl
- idaes-pse-1.6.0.tar.gz
- idaes_pse-1.6.0-py3-none-any.whl
- idaes-pse-1.6.1.tar.gz
- idaes_pse-1.6.1-py3-none-any.whl
- idaes-pse-1.6.2.tar.gz
- idaes_pse-1.6.2-py3-none-any.whl
- idaes-pse-1.6.3.tar.gz
- idaes_pse-1.6.3-py3-none-any.whl
- idaes-pse-1.7.0.tar.gz
- idaes_pse-1.7.0-py3-none-any.whl
- idaes-pse-1.8.0.tar.gz
- idaes_pse-1.8.0-py3-none-any.whl
- idaes-pse-1.9.0.tar.gz
- idaes_pse-1.9.0-py3-none-any.whl
- idaes-pse-1.10.0.tar.gz
- idaes_pse-1.10.0-py3-none-any.whl
- idaes-pse-1.10.1.tar.gz
- idaes_pse-1.10.1-py3-none-any.whl
- idaes-pse-1.11.0rc0.tar.gz
- idaes_pse-1.11.0rc0-py3-none-any.whl
- idaes-pse-1.11.0.tar.gz
- idaes_pse-1.11.0-py3-none-any.whl
- idaes-pse-1.12.0rc0.tar.gz
- idaes_pse-1.12.0rc0-py3-none-any.whl
- idaes-pse-1.12.0.tar.gz
- idaes_pse-1.12.0-py3-none-any.whl
- idaes-pse-1.12.1.tar.gz
- idaes_pse-1.12.1-py3-none-any.whl
- idaes-pse-1.13.0rc0.tar.gz
- idaes_pse-1.13.0rc0-py3-none-any.whl
- idaes-pse-1.13.0.tar.gz
- idaes_pse-1.13.0-py3-none-any.whl
- idaes-pse-1.13.2.tar.gz
- idaes_pse-1.13.2-py3-none-any.whl
- idaes-pse-2.0.0a0.tar.gz
- idaes_pse-2.0.0a0-py3-none-any.whl
- idaes-pse-2.0.0a2.tar.gz
- idaes_pse-2.0.0a2-py3-none-any.whl
- idaes-pse-2.0.0a3.tar.gz
- idaes_pse-2.0.0a3-py3-none-any.whl
- idaes-pse-2.0.0b1.tar.gz
- idaes_pse-2.0.0b1-py3-none-any.whl
- idaes-pse-2.0.0b2.tar.gz
- idaes_pse-2.0.0b2-py3-none-any.whl


Project link:

- Homepage