Hello! I'm a beginner and I'm figuring out a way to setup VSCode to work with PySpark applications for Airflow DAGs at work. I created a venv for a project and when I try to install requirements I get:
ERROR: To use truststore feature, 'truststore' must be installed into pip's current environment.
It throws the same error even when I pip install truststore! I've tried the below:
python -m pip install truststore
python -m pip install <package> --use-feature=truststore
I noticed that there is a pip.ini file as below. Copilot says its this use-feature that keeps blocking the installation of the libraries and truststore itself in the venv. I'm able to install truststore outside venv no issues!
[global]
timeout = 60
[install]
use-feature = truststore
It looks like a global file that could affect others and possibly any environment and I really want to avoid making changes in it. 