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

How to install usd-core via python pip




usd-core - Pixar's Universal Scene Description library, it belongs to Classifiers:

- Environment :: Console
- License :: Other/Proprietary License
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: Microsoft :: Windows :: Windows 10
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Topic :: Multimedia
- Topic :: Multimedia :: Graphics

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



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_usd-core_env

- Active the virtual environment

test_usd-core_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_usd-core_env

- Active the virtual environment

source test_usd-core_env/bin/active


Step 2: OK, now, let flow below content to start the installation usd-core

To install usd-core on Windows(CMD):

py -m pip install usd-core

To install usd-core on Unix/macOs:

pip install usd-core


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

Example:

pip install usd-core==20.11


Please see the version list below table:

VersionReleased dateCommand
usd-core 22.82022-07-21T22:16:38Windows:

py -m pip install usd-core==22.8

Unix/macOs:

pip install usd-core==22.8

usd-core 22.5.post12022-05-12T00:52:09Windows:

py -m pip install usd-core==22.5.post1

Unix/macOs:

pip install usd-core==22.5.post1

usd-core 22.52022-04-22T18:55:21Windows:

py -m pip install usd-core==22.5

Unix/macOs:

pip install usd-core==22.5

usd-core 22.32022-02-18T21:54:21Windows:

py -m pip install usd-core==22.3

Unix/macOs:

pip install usd-core==22.3

usd-core 21.112021-11-01T19:46:29Windows:

py -m pip install usd-core==21.11

Unix/macOs:

pip install usd-core==21.11

usd-core 21.82021-07-15T22:47:25Windows:

py -m pip install usd-core==21.8

Unix/macOs:

pip install usd-core==21.8

usd-core 21.52021-04-12T22:37:07Windows:

py -m pip install usd-core==21.5

Unix/macOs:

pip install usd-core==21.5

usd-core 21.22021-01-20T02:11:28Windows:

py -m pip install usd-core==21.2

Unix/macOs:

pip install usd-core==21.2

usd-core 20.112020-12-01T00:11:19Windows:

py -m pip install usd-core==20.11

Unix/macOs:

pip install usd-core==20.11


Step 4: Otherwise, you can install usd-core from local archives:

Download the distribution file from usd_core-22.8-cp39-none-win_amd64.whl or the specific usd-core version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_usd-core_downloaded_file>

On Unix/macOs:

pip install <path_to_usd-core_downloaded_file>


List distribution:


Project link:

- Homepage
- Developer Docs
- Discussion Group
- Documentation
- Source