Python – Bitkorn Blog https://blog.bitkorn.de Developer Zeugz Sun, 25 Dec 2022 16:22:00 +0000 de-DE hourly 1 https://wordpress.org/?v=6.3.1 Python zeug https://blog.bitkorn.de/python-zeug/ Sun, 25 Dec 2022 16:18:58 +0000 https://blog.bitkorn.de/?p=1175 Der Befehl python ist nicht nach der Installation vorhanden.

Folgendes reicht nicht in jedem Fall aus. In die ~/.bashrc einen Alias setzen.

alias python=python3
sudo apt install python-is-python3
]]>
PyCharm Project Interpreter: System Interpreter https://blog.bitkorn.de/pycharm-project-interpreter/ Fri, 01 Mar 2019 06:40:07 +0000 http://blog.t-brieskorn.de/?p=571 Settings -> Project Interpreter -> Show All -> + No module named ‚distutils‘ No module named ’setuptools‘ error: error in ‚egg_base‘ option: ’src‘ does not exist or is not a directory oder PyCharm Error beim Interpreter Einstellen: python packaging tools not found Jetzt funzts]]> Configure -> Settings -> Project Interpreter -> Show All -> +

No module named ‚distutils‘
No module named ’setuptools‘

sudo apt install python3-distutils
sudo apt install python3-setuptools

error: error in ‚egg_base‘ option: ’src‘ does not exist or is not a directory
oder
PyCharm Error beim Interpreter Einstellen: python packaging tools not found

sudo apt install python3-pip

Jetzt funzts

]]>