Learning Objectives:¶
- Verify that the Python environment and
py4dgeois correctly set up.
For detailed installation instructions, please refer to Preparation before the tutorial. In this notebook, we will simply verify that the installation was set up correctly.
You can run the following cell to check your Python version and architecture.
In [5]:
Copied!
import sys
import platform
print(f"Python version: {sys.version}")
print(f"Python architecture: {platform.architecture()[0]}")
import sys
import platform
print(f"Python version: {sys.version}")
print(f"Python architecture: {platform.architecture()[0]}")
Python version: 3.11.13 | packaged by conda-forge | (main, Jun 4 2025, 14:39:58) [MSC v.1943 64 bit (AMD64)] Python architecture: 64bit
You can run the following cell to check your py4dgeo version.
In [6]:
Copied!
import py4dgeo
print(f"Using py4dgeo version {py4dgeo.__version__}")
import py4dgeo
print(f"Using py4dgeo version {py4dgeo.__version__}")
Using py4dgeo version 1.1.0