Page 2 sur 27
PyCharm/Pip
Few tips if you notice inconsistencies between the versions of libraries installed with PyCharm depending on your version of Python (which can happen if you use multiple versions of Python).
Use space in the PyCharm terminal
Sometimes it is a little weird:
& "C:\Program Files\QGIS 3.28.1\bin\python-qgis.bat" -m pip freeze
Force Pip to install a specific library version in a specific Python version
C:\Users\Georges\AppData\Local\Programs\Python\Python39\python.exe -m pip install --force-reinstall "pandas==2.3.0"
Requirements
pip freeze
pip freeze > requirements.txt
Better, to be sure to print from a specific Python version:
C:\Users\Georges\AppData\Local\Programs\Python\Python39\python.exe -m pip freeze
Uninstall
C:\Users\Georges\AppData\Local\Programs\Python\Python39\python.exe -m pip uninstall mysql-connector
Reinstall from requirements
C:\Users\Georges\AppData\Local\Programs\Python\Python39\python.exe -m pip install --upgrade --force-reinstall -r C:\Users\Georges\PycharmProjects\Tests\requirements.txt