15,835 questions
0 votes
0 answers
22 views
Whitespace at the bottom of Jupyter Notebooks in Pycharm 2025.2.5
I switched from using JupyterLab in my browser to Jupyter Notebooks in Pycharm itself since it has improved since my last version. However, I find it quite disturbing that there is a lot of whitespace ...
0 votes
2 answers
125 views
PyCharm keeps using a non-existent Python 3.14 interpreter even after removing it from the system
I’m on Windows 11 and originally had two Python installations: 3.14 and 3.9. Both were installed and added to the PATH. After setting up PyCharm 2025.2.4, I started getting this error when creating a ...
Tooling
1 vote
2 replies
46 views
PyCharm doesn't highlight problem files/directories in the files tree
I'm just amazed, but is there really no function for highlighting directories and files with problematic code? The thing is, in one of my projects, I used JS in PyCharm, and there is a linter called ...
2 votes
1 answer
106 views
Type checker highlights 'Unexpected argument' for dynamically generated function
I'm trying to create a function dynamically. Here is an example: import ast import textwrap from typing import Any, Callable, List, Union def create_function( func_name: str, arg_types: List[...
2 votes
0 answers
100 views
gdal module not found even when configured in conda env
I have created a conda env and configured it in pycharm. I have installed all the libraries I need with conda command, and can also see them in output of 'conda list' as well as gdalinfo. gdalinfo --...
Advice
0 votes
3 replies
72 views
How to disable autocomplete in PyCharm’s Python Console (not the editor)?
I’m using the latest PyCharm (2025.2.4). I couldn't find anything like "autopopup code completation". Has this option been moved or removed? Is there any workaround to disable autocompletion ...
2 votes
1 answer
114 views
Can't see my_project settings in PyCharm Community Edition 2025.2.3
I'm doing Angela Wu's course on Ubuntu. At day 16 she explains how to install a package into your project. (This one https://pypi.org/project/prettytable/) Then she proceeds to show how to do that in ...
2 votes
1 answer
98 views
How to correctly set PyCharm 'Sources Root' when having few 'src' folders for few packages
I have a project with multiple packages, each containing its own src folder: project/ src/ package1/ pyproject.toml src/ logic/ somestuff.py mymodel1.py ...
2 votes
1 answer
49 views
Is it possible to enable PyCharm external documentation hotkey from the Evaluate window?
PyCharm supports customisable lookups of library functions and methods via hotkeys, which are set in the Settings -> Tools -> Python External Documentation and some entry examples are here. And ...
9 votes
1 answer
1k views
How to fix this:Type alias is not generic or already specialized
As shown in the image, I got a warning in PyCharm at the list index positions like [0][1][2].... The program still runs, but I don't understand what this warning means or how to resolve it. ...
3 votes
0 answers
78 views
How to resolve error Unresolved attribute reference 'create' for class 'BaseRepository'
I have code: import logging from typing import Generic, TypeVar from typing import Self, Any, Type from sqlalchemy.ext.asyncio import AsyncSession from sqlalchemy.orm import Session logger = logging....
-1 votes
0 answers
36 views
PyCharm, when saving non-py files, changes the icon of the modified file and cannot open it any more
Mac OS 15.6.1 (Also happening on some older versions) PyCharm 2022.2.5 (Community Edition, also happening on some older versions) I have projects containing both python code and groovy/jenkinsfile. ...
1 vote
1 answer
123 views
PyCharm 2025.2 doesnt recognise requirements.txt
Recently updated to PyCharm 2025.2.3 (from 2024.3) and in a lot of my libraries I see the Package containing module 'sqlalchemy' is not listed in the project requirements (happens for a variety of ...
-1 votes
0 answers
11 views
How to expand Windows environment path variable in PyCharm Run/Debug Configurations? [duplicate]
How to expand Windows environment path variable in PyCharm Run/Debug Configurations, in the fields named Script parameters or additional pytest/test options? It's not an exact 1:1 duplicate of this ...
1 vote
1 answer
75 views
EDL generation with python 3.10 (imagehash & numpy) produces complete nonsense on a greater amount of files
I have a directory of ca. 1600 PNGs (1000x400 res. previews of frames) and want to generate an EDL so I do not have to render the same frame several times. So far, I have successfully run the ...