Add install workaround for (ubuntu, conda) installation
See original GitHub issuei’m using ubuntu 16.04 alongwith conda package management. Also note that i’m using python 3.6. I had a trouble when I installed it via pip. it seems installing wxwidget, wxpython dependency fails.
To overcome this, wxpython is install via conda by
conda install -c conda-forge wxpython
Then, I need to remove/comment these line
# if sys.version[0] == '3':
# deps.append('wxpython==4.0.0b1')
in setup.py
then,
python setup.py install
result in working GOOEY 😃)))
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:8 (2 by maintainers)
Top Results From Across the Web
How to Install Anaconda in Ubuntu 22.04 - Linux Hint
To install Anaconda in Ubuntu 22.04, download the Anaconda installer file, install the "bash anaconda.sh" script, and verify using the "conda --version" ...
Read more >How To Install the Anaconda Python Distribution on Ubuntu ...
The best way to install Anaconda is to download the latest Anaconda installer bash script, verify it, and then run it. Find the...
Read more >Troubleshooting — Anaconda documentation
Cannot get conda to run after installing; Recovering your Anaconda ... Windows error: Failed to create Anaconda menus or Failed to add Anaconda...
Read more >Install packages in a conda environment on IU's high ... - IU KB
Run your program's commands. (You won't have to install the package each time you activate your environment; it should be installed already.) ...
Read more >How to Fix Conda command not found error in ... - MonoVM
When Anaconda is installed in the system, it usually adds conda to the path variable. However, if you can't find conda in the...
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
Ubuntu 18.04, Python installed by the system:
sudo apt install libgtk-3-dev
seemed to be enough. Had to usepip
(Python 2.7) notpip3
(Pyhton 3.6) because it wanted apathlib2
, which is a Python 2 package.Same issue on Ubuntu 18.04 with Python 3.6.5 in a virtual environment.
Fixed by installing a number of apt packages, as suggested in a thread on the wxWidget’s Phoenix GitHub. Simply installing
libgtk2.0
resolved one of the errors, but not the rest. I’m sure not all of the following packages are required, but I don’t have the time or desire currently to narrow them down.Also, I should note that the failure happens pretty quickly during the “./configure” step. If it gets to the point of waiting for half a decade to build, you’re good 😄