Terality Docs
  • What is Terality?
  • Documentation
    • Quickstart
      • Setup
      • Tutorial
      • Next steps
    • User guide
      • Supported configurations
      • User dashboard
      • Importing and exporting data
        • Reading/writing to storage
        • Reading from multiple files
        • Writing to multiple files
        • Storage services
        • Data formats
        • From/to pandas
      • .apply() and passing callables
      • Caching
      • Best practices and anti-patterns
      • Upgrading your client version
      • Client configuration (CLI)
      • Support for external packages
      • Advanced topics
        • Data mutability and ownership: Terality vs pandas
    • API Reference
      • Conversion from/to pandas
      • Write to multiple files
    • Deploy Terality in your own AWS account
    • Releases
  • FAQ
    • Differences with
      • Terality and Pandas
      • Terality vs Spark
      • Terality vs Dask
    • Pricing
    • Security
    • Support & contact
    • Common setup issues
Powered by GitBook
On this page

Was this helpful?

  1. Documentation
  2. User guide

Upgrading your client version

Terality recommends that you keep your client up-to-date, you can do so very easily in a single command.

To benefit from the newest features, improvements and fixes, Terality recommends keeping your client up-to-date.

When you import Terality, the client will automatically check if you're running the latest version, and will notify you if a later version exists.

You can update your client in two easy steps:

  1. First, upgrade the Terality package

  • from your terminal, by running:

pip install terality --upgrade
  • or from your notebook, by running in a notebook cell (note the leading exclamation mark)

! pip install terality --upgrade

2. Then, restart your notebook kernel or Python interpreter.

If you are using Python virtual environments, you need to run the upgrade command in the same virtual environment that's hosting the Python interpreter or notebook.

Terality might occasionally include breaking improvements that make older clients incompatible. In such cases, you will receive an error when you try to run a computation saying that the version you're running is no longer supported, such as:

Your client version 0.12.29 is outdated, please upgrade terality to the latest version  . 

In this case, please update your client to the latest version, as specified above.

PreviousBest practices and anti-patternsNextClient configuration (CLI)

Last updated 3 years ago

Was this helpful?