Step 1: Set up a virtual Python environment

The most recent version of MapReader supports Python versions 3.9-3.12.

Method 2: Using venv or other

If you would like not to use conda, you are more than welcome to set up a virtual Python environment using other methods.

For example, if you would like to use venv, open your terminal and use the following commands to set up your virtual Python environment:

  • First, importantly, check which version of Python your system is using:

    python3 --version
    

    If this returns a version below 3.9, you will need download an updated Python version. You can do this by downloading from here (make sure you download the right one for your operating system).

    You should then run the above command again to check your Python version has updated.

  • Create a new virtual Python environment for mapreader (you can call this whatever you like, we use mapreader):

    python3 -m venv mapreader
    
  • Activate your virtual environment:

    source mapreader/bin/activate