How to install Python environment in manjaro?

I want to install python 3 in manjaro. I know python is already installed but i want to install the setup/environment like pycharm in my system.

pycharm-community-edition is available from the Manjaro repos. :arrow_down:

pamac install pycharm-community-edition

… or… :arrow_down:

sudo pacman -S pycharm-community-edition

Read about pyenv to manage different Python versions and poetry about managing specific virtual environments and their dependencies.

thanks