Posts

Showing posts from January, 2020

Package pdftex.def Error: File converted-to.pdf not found: using draft setting. \includegraphics

If you have this issue with LaTeX, just execute the following command to solve it: sudo apt install texlive-font-utils Now, you could compile your tex file to see your images Enojoy it!

ImportError: cannot import name 'main'

This is a common issue with pip3 when you try to install some package: sudo pip3 install something Traceback (most recent call last):   File "/usr/bin/pip3", line 9, in <module>     from pip import main ImportError: cannot import name 'main' To fix it just execute the following sentence: sudo python3 -m pip uninstall pip && sudo apt install python3-pip --reinstall Enjoy it!