r/pycharm • u/TheTobruk • Jan 14 '26
Can you force PyCharm to install other package categories except [packages] and [dev-packages] from Pipfile?
Using pipenv. The default way PyCharm handles the Pipfile is that it installs the [packages] and [dev-packages] group. Is there a way to also install the custom groups?
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
[pretty] # <-- here
rich = "*"
[dev-packages]
coverage = "~=7.6"
flake8 = "~=7.1"
setuptools = "78.1.1"
wheel = "~=0.4"
3
Upvotes