e-help

IDE

Python Interpretor setup on pycharm

File->Settings->Project:Framework→Project Interpreter - Select your python virtual environment

Setup a dependent library for better navigation or go to option

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)

How to see what inside a python module from command line

dir(moduleName)

example-
import os
dir(os)

pip package

Comes a long with python 3.x

pip

pip by default comes along with python installation as module. For some distro you have to installed seperately

pip usage

pip3 --help
python3 -m pip3 install packageName

config

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