I use jfrog as private repository for python packages we create in the company, I config the .pip/pip.conf and .pypirc files and everything works fine in the installation.
the problem starts when I try to install regular packages, it always ask me for username and password (its ok for the private packages), there is any way to configure pip to ask for password only for the private packages?
in the pipeline i use the -i option of pip and pass the username and password:
pip3 install -r requirements.txt -i "https://<username>:<password>@<repository-url>"
but in the local machine, this is not a good option.