Steps to Reproduce
- Install numpy ==1.22.4
pip3 install numpy==1.22.4
- Run
nlp.install() with nlp.settings.enforce_versions=False
In cloud environment we use,
from johnsnowlabs import nlp
nlp.settings.enforce_versions=False
nlp.install(ocr_secret={ocr_secret}, enterprise_nlp_secret={nlp_jsl_secret}, visual=True)

Observed Behavior
During installation, numpy package is updated instead of reusing the existing numpy==1.22.4.
Note: This doesn't happen with nlp.settings.enforce_versions=True
Expected Behavior
The numpy package should be reused.
Steps to Reproduce
nlp.install()withnlp.settings.enforce_versions=FalseIn cloud environment we use,
from johnsnowlabs import nlp nlp.settings.enforce_versions=False nlp.install(ocr_secret={ocr_secret}, enterprise_nlp_secret={nlp_jsl_secret}, visual=True)Observed Behavior
During installation, numpy package is updated instead of reusing the existing numpy==1.22.4.
Note: This doesn't happen with nlp.settings.enforce_versions=True
Expected Behavior
The numpy package should be reused.