-1

I recently started working in pycharm. In jupyter notebook to find documentation of a function Shift + Tab would work but in pycharm I am not able to find.

I tried the following Ctrl + P, Ctrl + Shift + I its only working for inbuilt function like print(), max() but if I import a library its not working for it. for ex:

import cv2
cam = cv2.VideoCapture(0)

Its not telling any info or parameter for VideoCapture function and if I try to navigate it using Ctrl + B its showing "cannot find declaration to go" it also shows unresolved reference

I even checked with different library files like random, numpy but its not working

How should I resolve the problem

Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141

1 Answers1

0

ctrl + q or alt + middle-click pycharm

sylvanas
  • 16
  • 1