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
Cannot open bpyton #494
Comments
What's your six version? |
Python 2.7.6, and I am running OSX Yosemite 10.10.2. I did not mess around with files or anything. |
How did you install bpython? Did you install all the required dependencies? |
git clone https://github.com/bpython/bpython/ |
that's all I did. Is there anything else I need to install? |
Since you're trying to use the git version, please follow the steps outlined in http://docs.bpython-interpreter.org/contributing.html#getting-your-development-environment-set-up. The most important part being:
|
Thank you so much sebastians, let me try that and I'll get back to you in a few. Thanks |
I am getting same error again..... So i deleted all previous bpython files and downloaded again with git and I followed these steps: $ cd bpython install bpython and required dependencies$ pip install -e . install optional dependencies$ pip install watchdog urwid development dependencies$ pip install sphinx mock nose this runs your modified copy of bpython!$ bpython Everything installed successfully and when I start bpython same error :( Please help |
Please post the log of the install and the output of |
Tomics-MBP:bpython root# pip install -e . Tomics-MBP:bpython root# pip install watchdog urwid Tomics-MBP:bpython root# pip install sphinx mock nose |
Tomics-MBP:bpython root# pip freeze |
Upgrade six to 1.5 and bpython should be able to start. |
I have six version
This error started showing when I upgraded bpython to 0.14
My previous bpython version was |
Do you have an old six version somewhere on your |
Indeed.
Any idea how to fix this? |
Remove the old copy or put the new one earlier on your |
Thanks! |
I use $ sudo easy_install bpython And now works, hope this helps, regards! |
Adding this to my .bash_profile solved this issue for me. export PYTHONPATH=/Library/Python/2.7/site-packages/:$PYTHONPATH |
I have installed fresh OX on my Mac, installed bpython and I have been getting errors when I try to start bpython since. This is the error message I am getting:
Tomics-MBP:~ Tom$ bpython
Traceback (most recent call last):
File "/usr/local/bin/bpython", line 9, in
load_entry_point('bpython==0.15.dev54', 'console_scripts', 'bpython')()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 357, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 2394, in load_entry_point
return ep.load()
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources.py", line 2108, in load
entry = import(self.module_name, globals(),globals(), ['name'])
File "/Library/Python/2.7/site-packages/bpython-0.15.dev54-py2.7.egg/bpython/curtsies.py", line 14, in
from bpython.curtsiesfrontend.repl import Repl
File "/Library/Python/2.7/site-packages/bpython-0.15.dev54-py2.7.egg/bpython/curtsiesfrontend/repl.py", line 33, in
from bpython.config import (Struct, loadini, default_config_path,
File "/Library/Python/2.7/site-packages/bpython-0.15.dev54-py2.7.egg/bpython/config.py", line 8, in
from six.moves.configparser import ConfigParser
ImportError: No module named configparser
The text was updated successfully, but these errors were encountered: