You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Installation in python environment where the art package is already installed causes a conflict. art has already been in use for the other package since 2017, and this collision makes it difficult to install both in the same virtual environment.
To Reproduce
Steps to reproduce the behavior:
pip install art
pip install adversarial-robustness-toolbox
In python: import art
Whichever package has been installed last is loaded
Expected behavior
The other module would be loaded.
System information (please complete the following information):
OS: UNIX
Python version: 3.7
ART version or commit number: 1.5
The text was updated successfully, but these errors were encountered:
Hi @jimbudarz Thank you very much for pointing this out, I was not aware of this package art which seems quite useful.
We'll probably have to change the module name from art to adversarial-robustness-toolbox and advise users to use import adversarial-robustness-toolbox as art for backward compatibility and update imports accordingly.
Describe the bug
Installation in python environment where the art package is already installed causes a conflict.
art
has already been in use for the other package since 2017, and this collision makes it difficult to install both in the same virtual environment.To Reproduce
Steps to reproduce the behavior:
pip install art
pip install adversarial-robustness-toolbox
import art
Expected behavior
The other module would be loaded.
System information (please complete the following information):
The text was updated successfully, but these errors were encountered: