Dali: How to update dali to the latest version?

Created on 30 Nov 2019  路  1Comment  路  Source: NVIDIA/DALI

I want to update DALI from the current 0.13 to the latest stable 0.15:

(pt) michael@ubuntu:~$ pip install --extra-index-url https://developer.download.nvidia.com/compute/redist/cuda/10.0 nvidia-dali
Looking in indexes: https://pypi.org/simple, https://developer.download.nvidia.com/compute/redist/cuda/10.0
Requirement already satisfied: nvidia-dali in /home/michael/miniconda2/envs/pt/lib/python3.7/site-packages (0.13.0)
Requirement already satisfied: future in /home/michael/miniconda2/envs/pt/lib/python3.7/site-packages (from nvidia-dali) (0.17.1)

(pt) michael@ubuntu:~$ conda list dali
# packages in environment at /home/michael/miniconda2/envs/pt:
#
# Name                    Version                   Build  Channel
nvidia-dali               0.13.0                   pypi_0    pypi

How should I do that?

question

Most helpful comment

With pip, if you already have a version installed and want to replace it, you have to use pip install --upgrade .... Hope this helps!

https://packaging.python.org/tutorials/installing-packages/#upgrading-packages

>All comments

With pip, if you already have a version installed and want to replace it, you have to use pip install --upgrade .... Hope this helps!

https://packaging.python.org/tutorials/installing-packages/#upgrading-packages

Was this page helpful?
0 / 5 - 0 ratings