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

How to install pyprt via python pip




pyprt - Python bindings for the "Procedural Runtime" (PRT) of CityEngine by Esri., it belongs to Classifiers:

- License :: Free for non-commercial use
- Operating System :: Unix
- Programming Language :: C
- Programming Language :: C++
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics
- Topic :: Multimedia :: Graphics :: 3D Modeling

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



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_pyprt_env

- Active the virtual environment

test_pyprt_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_pyprt_env

- Active the virtual environment

source test_pyprt_env/bin/active


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

To install pyprt on Windows(CMD):

py -m pip install pyprt

To install pyprt on Unix/macOs:

pip install pyprt


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

Example:

pip install pyprt==1.0.0b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
pyprt 1.5.02022-01-10T16:57:56Windows:

py -m pip install pyprt==1.5.0

Unix/macOs:

pip install pyprt==1.5.0

pyprt 1.4.02021-08-25T08:11:24Windows:

py -m pip install pyprt==1.4.0

Unix/macOs:

pip install pyprt==1.4.0

pyprt 1.3.02021-05-12T16:34:19Windows:

py -m pip install pyprt==1.3.0

Unix/macOs:

pip install pyprt==1.3.0

pyprt 1.2.02020-11-30T15:08:29Windows:

py -m pip install pyprt==1.2.0

Unix/macOs:

pip install pyprt==1.2.0

pyprt 1.1.02020-07-16T14:01:17Windows:

py -m pip install pyprt==1.1.0

Unix/macOs:

pip install pyprt==1.1.0

pyprt 1.0.02020-04-27T07:34:46Windows:

py -m pip install pyprt==1.0.0

Unix/macOs:

pip install pyprt==1.0.0


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

Download the distribution file from pyprt-1.5.0-3-cp39-cp39-win_amd64.whl or the specific pyprt version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyprt_downloaded_file>

On Unix/macOs:

pip install <path_to_pyprt_downloaded_file>


List distribution:


Project link:

- Homepage
- Download