question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Add install workaround for (ubuntu, conda) installation

See original GitHub issue

i’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:open
  • Created 6 years ago
  • Reactions:1
  • Comments:8 (2 by maintainers)

github_iconTop GitHub Comments

4reactions
Uplink03commented, Sep 23, 2019

Ubuntu 18.04, Python installed by the system: sudo apt install libgtk-3-dev seemed to be enough. Had to use pip (Python 2.7) not pip3 (Pyhton 3.6) because it wanted a pathlib2, which is a Python 2 package.

2reactions
GhostofGoescommented, Jun 12, 2018

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.

sudo apt install libwebkitgtk-dev libjpeg-dev libtiff-dev libgtk2.0-dev libsdl1.2-dev freeglut3 freeglut3-dev libnotify-dev libgstreamerd-3-dev

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 😄

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found