Hi there, I m using mac osx 10.8 and when I try to install via pip I have the following problem:
Downloading/unpacking pyspotlight
Downloading pyspotlight-0.6.5.1.tar.gz
Running setup.py egg_info for package pyspotlight
Traceback (most recent call last):
File "", line 16, in
File "/var/folders/t4/jlckxssx6_s2tmrxt0qhqst00000gn/T/pip-build/pyspotlight/setup.py", line 40, in
long_description=open('README.rst').read(),
IOError: [Errno 2] No such file or directory: 'README.rst'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 16, in
File "/var/folders/t4/jlckxssx6_s2tmrxt0qhqst00000gn/T/pip-build/pyspotlight/setup.py", line 40, in
long_description=open('README.rst').read(),
IOError: [Errno 2] No such file or directory: 'README.rst'
I went to the pip cache in /tmp/pip-build/pyspotlight and noticed that the README.rst from the repo was missing. I copied and pasted the contents of the file there and saved under the same name. Running sudo python setup.py install from there installed the package fine.
Hi there, I m using mac osx 10.8 and when I try to install via pip I have the following problem:
Downloading/unpacking pyspotlight Downloading pyspotlight-0.6.5.1.tar.gz Running setup.py egg_info for package pyspotlight Traceback (most recent call last): File "", line 16, in
File "/var/folders/t4/jlckxssx6_s2tmrxt0qhqst00000gn/T/pip-build/pyspotlight/setup.py", line 40, in
long_description=open('README.rst').read(),
IOError: [Errno 2] No such file or directory: 'README.rst'
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 16, in
File "/var/folders/t4/jlckxssx6_s2tmrxt0qhqst00000gn/T/pip-build/pyspotlight/setup.py", line 40, in
IOError: [Errno 2] No such file or directory: 'README.rst'
I went to the pip cache in /tmp/pip-build/pyspotlight and noticed that the README.rst from the repo was missing. I copied and pasted the contents of the file there and saved under the same name. Running
sudo python setup.py install
from there installed the package fine.