Installation error in last version when compiling from source in python2
See original GitHub issueWhen compiling from source in python2 I get the following error:
$python -c "import datashader"
Segmentation fault (core dumped)
When using the conda recipe or python3 everthing is ok
Issue Analytics
- State:
- Created 7 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Unable to build Python library from source on Linux #380
Hello, I'm following the instructions here to build the Python library but I'm getting a compiler error. Repro steps: sudo apt-get install git ......
Read more >can't install pip anymore with python 2.7? - Stack Overflow
The problem seems to be that no specific version of pip was specified, and therefore, the script is trying to install the latest...
Read more >Installing Packages - Python Packaging User Guide - Python.org
Installing Packages¶. This section covers the basics of how to install Python packages. It's important to note that the term “package” in this...
Read more >Install Python, pip, and the EB CLI on Linux
To upgrade to the latest version, run the installation command again. $ pip install awsebcli --upgrade --user.
Read more >Install TensorFlow with pip
Note: GPU support is available for Ubuntu and Windows with CUDA®-enabled cards. Software requirements. Python 3.7–3.10; pip version 19.0 or higher for Linux...
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
I resloved this problem by use
pip uninstall scipy
. I found scipy was mentioned in core file. So I tried to uninstall the scipy, and then it the segment fault gone away. My scipy version is 0.18.1. @jbednarHow did you solve it ? I meet the same problem. @miguelgfierro Do you have any suggestion to sovle it ? @jbednar