err when installing numpy under virtualenv - linux

I want to install numpy under virtualenv. I have follow the way described in How to install numpy in a virtualenv on Debian? . I use cmd line: /home/szh702/virtenv/bin/pip install numpy (virtenv is the name I set up the virtualenv as), but still get an err msg as following:
Command /home/szh702/virtenv/bin/python3 -c "import setuptools, tokenize;__file__='/home/szh702/virtenv/build/numpy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-soyglwkq-record/install-record.txt --single-version-externally-managed --compile --install-headers /home/szh702/virtenv/include/site/python3.4 failed with error code 1 in /home/szh702/virtenv/build/numpy
Storing debug log for failure in /home/szh702/.pip/pip.log
can some one be so kind to tell me how to solve it?

Related

Pip issue installing mahotas

I am new to python. I am trying to install Mahotas package in my CentOS machine.
Command: sudo pip3 install mahotas
Python version: 3.6.8
Os: CentOS 8
Error:
Command "/usr/bin/python3.6 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-e01qget1/mahotas/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-_ao2xjit-record/install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in /tmp/pip-build-e01qget1/mahotas/
Author of mahotas here. There is too little information to figure out what is wrong.
I recommend you try using conda to install mahotas: https://anaconda.org/conda-forge/mahotas

install python talib library in azure kudu

I keep failing to install talib library in Azure's Kudu Debug console.
From D:\home\python364x86 I ran python -m pip install Ta-Lib but got this error
Command "D:\home\python364x86\python.exe -u -c "import setuptools, tokenize;file='D:\local\Temp\pip-build-az9dvnof\talib\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" install --record D:\local\Temp\pip-1737i4ol-record\install-record.txt --single-version-externally-managed --compile --user --prefix=" failed with error code 1 in D:\local\Temp\pip-build-az9dvnof\talib\
Anyone successfully installed talib in Kudu debug console?

Can't pip install lxml

I am getting this error [I have installed setuptools already]
Command C:\Python34\python.exe -c "import setuptools,
tokenize;__file__='C:\Users\YASHOR~1\AppData\Local\Temp\pip_build_yashoraja\lxml\setup.py';exec(compile(getattr(tokenize,
'open', open)(__file__).read().replace('\r\n', '\n'), __file__,
'exec'))" install --record
C:\Users\YASHOR~1\AppData\Local\Temp\pip-9akmmco4-record\install-record.txt
--single-version-externally-managed --compile failed with error code 1 in C:\Users\YASHOR~1\AppData\Local\Temp\pip_build_yashoraja\lxml
You need to build it on Windows.
Instructions and binaries on their web site:
https://lxml.de/installation.html
https://lxml.de/installation.html#source-builds-on-ms-windows
Personally, I had a similar issue with pyaudio and I just gave up and did my project on Linux.

How to understand this Pygame error?

I'm trying to install Pygame on My computer. I am running Mac OSX with Python 3.7.0. I successfully installed pip3, but when I try to install Pygame using sudo pip3 install hg+http://bitbucket.org/pygame/pygame, I get the following error:
Command "/usr/local/opt/python/bin/python3.7 -u -c "import setuptools, tokenize;__file__='/private/tmp/pip-install-arxkd3yz/pygame/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /private/tmp/pip-record-iq00o_g3/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/tmp/pip-install-arxkd3yz/pygame/
What is the reason for this error, and a fix for the same?

Error while installing scrapy?

i use python 3.6 , and when i try to install scrapy using pip on cmd the output was as shown here :
Command ""c:\program files\python36\python.exe" -u -c "import
setuptools,
tokenize;__file__='C:\\Users\\Sarah\\AppData\\Local\\Temp\\pip-build-
hql11prt\\Twisted\\setup.py';f=getattr(tokenize, 'open', open)
(__file__);code=f.read().replace('\r\n',
'\n');f.close();exec(compile(code, __file__, 'exec'))" install --record
C:\Users\Sarah\AppData\Local\Temp\pip-b2cmfpf2-record\install-
record.txt --single-version-externally-managed --compile" failed with
error code 1 in C:\Users\Sarah\AppData\Local\Temp\pip-build-
hql11prt\Twisted\
how can i solve this problem ?
Download Twisted from the website below and install it first, and then pip install scrapy
https://www.lfd.uci.edu/~gohlke/pythonlibs/

Resources