File->Settings->Project:Framework→Project Interpreter - Select your python virtual environment
File->Settings->Project:Framework→Project Structure - is for library folder setup is for “go to” functionality for pycharm. ( select the folder you believe that , thats a library for your python project and right click and select source)
dir(moduleName)
example-
import os
dir(os)
Comes a long with python 3.x
pip by default comes along with python installation as module. For some distro you have to installed seperately
pip3 --help
python3 -m pip3 install packageName
If you are dealing with private pip registry make sure you have below config in place
[global]
index = https://USERNAME:PASSWORD@pypiregistry.net/repository/pypi-group-internal/pypi
index-url = https://USERNAME:PASSWORD@pypiregistry.net/repository/pypi-group-internal/simple
extra-url = https://USERNAME:PASSWORD@pypiregistry.net/repository/pypi-group-internal/pypi
[install]
ignore-installed = true
trusted-host = pypiregistry.net