-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error invoking rainbowstream #16
Comments
Can you provide a little more information ? Is this error occurred when running (or during install) the app ? Did you use Mac (which OSX version ? ) or Linux (which distro ?) Did you tried |
I had the same output when I tried to install it with venv and launched it but actually there was an error upon installation: error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 The problem is the missing sqlite3.h which, on debian, is provided by the package libsqlite3-dev. |
FYI: You also need python-dev if on ubuntu, which the instructions don't include. sudo apt-get install python-dev |
Thanks @mikeforbes and @yaps8 👍 |
I am on Mavericks and I got it on running. |
@jikkujose : Do you still have problem with install now ? |
@yaps8 try installing |
Yup, still can't set it up in my home. I tried in office and it worked. At On 26 July 2014 12:05, Orakaro notifications@github.com wrote:
|
Did the installation wen fine without an error? (venv)DTVD@DTVD-Air :: ~/test -->> pip list
Pillow (2.5.1)
pip (1.5.4)
pyfiglet (0.7)
pysqlite (2.6.3)
python-dateutil (2.2)
rainbowstream (0.4.9)
requests (2.3.0)
setuptools (2.2)
six (1.7.3)
SQLAlchemy (0.9.7)
twitter (1.14.3)
wsgiref (0.1.2)
(venv)DTVD@DTVD-Air :: ~/test -->> pip install pysqlite
Requirement already satisfied (use --upgrade to upgrade): pysqlite in ./venv/lib/python2.7/site-packages
Cleaning up... |
Hey! Maybe I know this error - The reason is your Maverick and Xcode 5.1 clang compiler treats unknown passed parameters as errors . Please see more detail at #10 and try the work around to reinstall |
I am running Ubuntu 14.04 and have python-dev and libsqlite3-dev installed. When trying to install with pip and the venv methods I get this error: Running setup.py (path:/tmp/pip_build_root/rainbowstream/setup.py) egg_info for package rainbowstream File "", line 17, in File "/tmp/pip_build_root/rainbowstream/setup.py", line 33, in
File "/usr/lib/python3.4/encodings/ascii.py", line 26, in decode
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 372: ordinal not in range(128) |
Let's try to specifying PYTHONIOENCODING before reinstall export PYTHONIOENCODING=utf-8 There is a similar question on StackOverFlow. |
Thanks, I got it sorted. It was my fault. Python 3.x is the default on my system and is what the pip command uses. I forgot I had an alias for pip2 which uses Python 2.7. so pip2 install rainbowstream worked great. |
Traceback (most recent call last):
File "/usr/local/bin/rainbowstream", line 5, in
from pkg_resources import load_entry_point
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 2603, in
working_set.require(requires)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 666, in require
needed = self.resolve(parse_requirements(requirements))
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 565, in resolve
raise DistributionNotFound(req) # XXX put more info here
pkg_resources.DistributionNotFound: pysqlite
The text was updated successfully, but these errors were encountered: