I can't build with dependencies with pip. Is there something wrong with my set up?
Asked 6 months ago
Whenever I try to install and build a dependency with pip, I receive an error message "python <name> did not run successfully". What could this problem be?
Santino Vargas
Wednesday, October 12, 2022
This issue has a rather simple solution, as Python is importing the library before even installing it. The best way to go about solving this is to include the version information correctly in the setup.py file before you install any dependency.
Please follow our Community Guidelines