Problems with dependencies
See original GitHub issueHi again,
I try to install Gooey, but have problems with some dependencies. With pip I actually manage to install the package, but when I launch a script it complains about wxPython
. After finally finding a solution on the official web page (sudo pip install --upgrade --trusted-host wxpython.org --pre -f http://wxpython.org/Phoenix/snapshot-builds/ wxPython_Phoenix
), it then complains about a package called animate
.
Is there an easier way to install it? Maybe a requirement file?
Issue Analytics
- State:
- Created 8 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
What is Dependency Hell and How to Avoid it? - Boldare
Dependency hell (otherwise known as JAR hell, or classpath hell) is a phrase used to describe the difficulties encountered by software ...
Read more >Solve the problems with dependencies in Java
In some cases, the resolution of the conflict with the version produces an error, the most common are: “ClassNotFoundException” — “ ...
Read more >Defending your code against dependency problems
Problems can occur if your software relies on a specific version of dependent software, and that dependent software is not available on a...
Read more >What dependency hell looks like, and how to avoid it
Everyday dependency issues · The library code might just be terrible! · Many packages are poorly maintained. · Documentation can be poor or...
Read more >Solving the World's Open-Source Software Security Problem
As a result, stopping attacks is now difficult because of the immense complexity of the modern software dependency tree: components that depend ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Answering my own question here for the benefit of others. When using wxpython in a virtualenv, these instructions worked to get wxpython and wx working: http://www.thebrokendesk.com/post/using-wx-python-in-a-virtual-environment/
The only change I made was to use
PYTHON=/usr/local/bin/python2.7
in the bash script suggested rather than ipython.I had issues with wxPython due to having Anaconda installed. It’s working now and I am posting here to hopefully save others time.
Issue I had: import wx ImportError: No module named wx
Solution: Go to your Anaconda2/Lib/site-packages and copy the ‘wx-<version>-msw’ folder. Go to Python27/Lib/site-packages and paste the ‘wx-<version>-msw’ folder there. Open the ‘wx-<version>-msw’ folder and move the ‘wx’ folder out into Python27/Lib/site-packages.