Tuesday, April 30, 2024
13
rated 0 times [  13] [ 0]  / answers: 1 / hits: 19315  / 2 Years ago, sat, march 12, 2022, 3:09:29

I have searched everywhere and I can not find the config file on Ubuntu Ubuntu 20.04.2 LTS with only pip3 installed
do I have to make one?
The below commands return null:


locate pip.conf

or


locate pip3.conf

or


find pip3.conf

returns


find: ‘pip3.conf’: No such file or directory

More From » configuration

 Answers
3

The default locations are ...


$HOME/.config/pip/pip.conf
/etc/pip.conf

Beware that there was a bug in pip 20.0 (used in Ubuntu 20.04) and fixed in pip 21.0 where it ignored the global and used


/etc/xdg/pip/pip.conf



locate pip.conf 

only works after a sudo updatedb was performed since you installed it (happens automatically at a given interval but it is not real time).




If there is no default you can create it with ...


export PIP_CONFIG_FILE=/dir/to/pip.conf

or by just creating


~/.config/pip/pip.conf

See the documentation for more information.


[#1784] Sunday, March 13, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
taigysel

Total Points: 33
Total Questions: 136
Total Answers: 114

Location: Singapore
Member since Wed, Jan 13, 2021
3 Years ago
;