Getting started

Installing from PyPI

Pyrieef Python packages are distributed via PyPI.

Supported Python versions:

  • 3.6

  • 3.7

  • 3.8

Supported operating systems:

  • Ubuntu 18.04+

  • macOS 10.14+

If you have other Python versions (e.g. Python 2) or operating systems, please refer to compilation and compile Open3D from source.

Pip (PyPI)

pip install pyrieef

Note

In general, we recommend using a virtual environment for containerization. Otherwise, depending on the configurations, pip3 may be needed for Python 3, or the --user option may need to be used to avoid permission issues. For example:

pip3 install pyrieef
# or
pip install --user pyrieef
# or
python3 -m pip install --user pyrieef

Try it

Now, try importing Open3D.

python -c "import pyrieef"

If this works, congratulations, now pyrieef has been successfully installed!